mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
7659554dea
This removes the use of caret redirections from share/completions and share/functions, in preparation for dropping support in fish.
9 lines
558 B
Fish
9 lines
558 B
Fish
|
|
complete -c lua -s e -d 'Execute string' -x
|
|
# Try the most common lib directories, silencing errors in case they don't exist.
|
|
complete -c lua -s l -d 'Require library' -xa "(find /usr/lib{,32,64}/lua/ -name \*.so -printf '%f\n' 2>/dev/null | string replace -r '.so\$' '')"
|
|
complete -c lua -s i -d 'Enter interactive mode after executing script'
|
|
complete -c lua -s v -d 'Show version'
|
|
complete -c lua -s h -l help -d 'Print help and exit'
|
|
complete -c lua -a "(__fish_complete_suffix .lua)"
|
|
complete -c lua -a '-' -d 'Execute stdin and stop handling options'
|