File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ $ rustup completions bash > ~/.local/share/bash_completion/completions/rustup
73
73
$ rustup completions bash > $( brew --prefix) /etc/bash_completion.d/rustup.bash-completion
74
74
75
75
# Fish
76
+ $ mkdir -p ~ /.config/fish/completions
76
77
$ rustup completions fish > ~ /.config/fish/completions/rustup.fish
77
78
78
79
# Zsh
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ r"DISCUSSION:
169
169
`~/.local/share/bash_completion/completions` for user-specific commands.
170
170
Run the command:
171
171
172
+ $ mkdir -p ~/.local/share/bash_completion/completions
172
173
$ rustup completions bash >> ~/.local/share/bash_completion/completions/rustup
173
174
174
175
This installs the completion script. You may have to log out and
@@ -179,13 +180,15 @@ r"DISCUSSION:
179
180
Homebrew stores bash completion files within the Homebrew directory.
180
181
With the `bash-completion` brew formula installed, run the command:
181
182
183
+ $ mkdir -p $(brew --prefix)/etc/bash_completion.d
182
184
$ rustup completions bash > $(brew --prefix)/etc/bash_completion.d/rustup.bash-completion
183
185
184
186
FISH:
185
187
186
188
Fish completion files are commonly stored in
187
189
`$HOME/.config/fish/completions`. Run the command:
188
190
191
+ $ mkdir -p ~/.config/fish/completions
189
192
$ rustup completions fish > ~/.config/fish/completions/rustup.fish
190
193
191
194
This installs the completion script. You may have to log out and
You can’t perform that action at this time.
0 commit comments