mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-28 12:13:55 +08:00
d4034fc253
darcs-hash:20060111141735-ac50b-b6a9ac5d5d9eb8eac28dd39968cd28f99044e8f5.gz
13 lines
769 B
Fish
13 lines
769 B
Fish
complete -c commandline -s a -l append -d (_ "Add text to the end of the selected area")
|
|
complete -c commandline -s i -l insert -d (_ "Add text at cursor")
|
|
complete -c commandline -s r -l replace -d (_ "Replace selected part")
|
|
|
|
complete -c commandline -s j -l current-job -d (_ "Select job under cursor")
|
|
complete -c commandline -s p -l current-process -d (_ "Select process under cursor")
|
|
complete -c commandline -s t -l current-token -d (_ "Select token under cursor")
|
|
complete -c commandline -s b -l current-buffer -d (_ "Select entire command line (default)")
|
|
|
|
complete -c commandline -s c -l cut-at-cursor -d (_ "Only return that part of the command line before the cursor")
|
|
complete -c commandline -s f -l function -d (_ "Inject readline functions to reader")
|
|
|