mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
34e27ff4c2
darcs-hash:20070116011828-ac50b-fb923dc877869ded4d506bbe0bc5364eea44092f.gz
17 lines
1.1 KiB
Fish
17 lines
1.1 KiB
Fish
|
|
complete -c commandline -s h -l help --description "Display help and exit"
|
|
complete -c commandline -s a -l append --description "Add text to the end of the selected area"
|
|
complete -c commandline -s i -l insert --description "Add text at cursor"
|
|
complete -c commandline -s r -l replace --description "Replace selected part"
|
|
|
|
complete -c commandline -s j -l current-job --description "Select job under cursor"
|
|
complete -c commandline -s p -l current-process --description "Select process under cursor"
|
|
complete -c commandline -s t -l current-token --description "Select token under cursor"
|
|
complete -c commandline -s b -l current-buffer --description "Select entire command line (default)"
|
|
|
|
complete -c commandline -s c -l cut-at-cursor --description "Only return that part of the command line before the cursor"
|
|
complete -c commandline -s f -l function --description "Inject readline functions to reader"
|
|
|
|
complete -c commandline -s I -l input --description "Specify command to operate on"
|
|
complete -c commandline -s C -l cursor --description "Set/get cursor position, not buffer contents"
|
|
|