2022-12-11 02:21:20 +08:00
|
|
|
# "add" is implicit.
|
|
|
|
set __fish_abbr_not_add_cond '__fish_seen_subcommand_from --query --rename --erase --show --list --help'
|
|
|
|
set __fish_abbr_add_cond 'not __fish_seen_subcommand_from --query --rename --erase --show --list --help'
|
2022-12-18 00:39:27 +08:00
|
|
|
function __fish_abbr_add_function_cond
|
|
|
|
argparse -s h/help a/add p/position= f/function r/regex= set-cursor=? \
|
|
|
|
-- (commandline -opc)[2..-1] 2>/dev/null
|
|
|
|
and test (count $argv) -eq 1
|
|
|
|
end
|
2022-12-11 02:21:20 +08:00
|
|
|
|
2021-10-19 23:45:18 +08:00
|
|
|
complete -c abbr -f
|
2022-12-11 02:21:20 +08:00
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s a -l add -d 'Add abbreviation'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s q -l query -d 'Check if an abbreviation exists'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -l rename -d 'Rename an abbreviation' -xa '(abbr --list)'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s e -l erase -d 'Erase abbreviation' -xa '(abbr --list)'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s s -l show -d 'Print all abbreviations'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s l -l list -d 'Print all abbreviation names'
|
|
|
|
complete -c abbr -f -n $__fish_abbr_not_add_cond -s h -l help -d Help
|
|
|
|
|
|
|
|
|
|
|
|
complete -c abbr -f -n $__fish_abbr_add_cond -s p -l position -a 'command anywhere' -d 'Expand only as a command, or anywhere' -x
|
2022-12-18 00:32:07 +08:00
|
|
|
complete -c abbr -f -n $__fish_abbr_add_cond -s f -l function -d 'Treat expansion argument as a fish function'
|
2022-12-11 02:21:20 +08:00
|
|
|
complete -c abbr -f -n $__fish_abbr_add_cond -s r -l regex -d 'Match a regular expression' -x
|
2022-12-18 00:32:07 +08:00
|
|
|
complete -c abbr -f -n $__fish_abbr_add_cond -l set-cursor -d 'Position the cursor at % post-expansion'
|
2022-12-18 00:39:27 +08:00
|
|
|
complete -c abbr -f -n "$__fish_abbr_add_cond && __fish_abbr_add_function_cond" -a '(functions)' -d "Expand to output of this function"
|