add gitignore and update files
This commit is contained in:
17
fish/completions/etherlight.fish
Normal file
17
fish/completions/etherlight.fish
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
function __fish_._etherlight.py_complete
|
||||
set -x _ARGCOMPLETE 1
|
||||
set -x _ARGCOMPLETE_DFS \t
|
||||
set -x _ARGCOMPLETE_IFS \n
|
||||
set -x _ARGCOMPLETE_SUPPRESS_SPACE 1
|
||||
set -x _ARGCOMPLETE_SHELL fish
|
||||
set -x COMP_LINE (commandline -p)
|
||||
set -x COMP_POINT (string length (commandline -cp))
|
||||
set -x COMP_TYPE
|
||||
if set -q _ARC_DEBUG
|
||||
./etherlight.py 8>&1 9>&2 1>&9 2>&1
|
||||
else
|
||||
./etherlight.py 8>&1 9>&2 1>/dev/null 2>&1
|
||||
end
|
||||
end
|
||||
complete --path ./etherlight.py -f -a '(__fish_._etherlight.py_complete)'
|
||||
Reference in New Issue
Block a user