mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
completions: fish_add_path
This commit is contained in:
parent
99c2c599f3
commit
dcf4d671c2
1 changed files with 9 additions and 0 deletions
9
share/completions/fish_add_path.fish
Normal file
9
share/completions/fish_add_path.fish
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
complete -c fish_add_path -s a -l append -d 'Add path to the end'
|
||||||
|
complete -c fish_add_path -s p -l prepend -d 'Add path to the front (default)'
|
||||||
|
complete -c fish_add_path -s g -l global -d 'Use a global $fish_user_paths'
|
||||||
|
complete -c fish_add_path -s U -l universal -d 'Use a universal $fish_user_paths (default)'
|
||||||
|
complete -c fish_add_path -s P -l path -d 'Update $PATH directly'
|
||||||
|
complete -c fish_add_path -s m -l move -d 'Move path to the front or back'
|
||||||
|
complete -c fish_add_path -s v -l verbose -d 'Print the set command used'
|
||||||
|
complete -c fish_add_path -s n -l dry-run -d 'Print the set command without executing it'
|
||||||
|
complete -c fish_add_path -s h -l help -d 'Display help and exit'
|
Loading…
Reference in a new issue