Skip to content

Commit 20938a8

Browse files
committed
docs(complete): Render shell headings in bold
1 parent cb49eba commit 20938a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clap_complete/src/env/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,29 @@
3535
//!
3636
//! </div>
3737
//!
38-
//! Bash
38+
//! **Bash**
3939
//! ```bash
4040
//! echo "source <(COMPLETE=bash your_program)" >> ~/.bashrc
4141
//! ```
4242
//!
43-
//! Elvish
43+
//! **Elvish**
4444
//! ```elvish
4545
//! echo "eval (E:COMPLETE=elvish your_program | slurp)" >> ~/.elvish/rc.elv
4646
//! ```
4747
//!
48-
//! Fish
48+
//! **Fish**
4949
//! ```fish
5050
//! echo "COMPLETE=fish your_program | source" >> ~/.config/fish/config.fish
5151
//! ```
5252
//!
53-
//! Powershell
53+
//! **Powershell**
5454
//! ```powershell
5555
//! $env:COMPLETE = "powershell"
5656
//! echo "your_program | Out-String | Invoke-Expression" >> $PROFILE
5757
//! Remove-Item Env:\COMPLETE
5858
//! ```
5959
//!
60-
//! Zsh
60+
//! **Zsh**
6161
//! ```zsh
6262
//! echo "source <(COMPLETE=zsh your_program)" >> ~/.zshrc
6363
//! ```

0 commit comments

Comments
 (0)