Adding upstream version 0.16.7.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
50453fb690
commit
e4b3680961
15 changed files with 737 additions and 81 deletions
17
auto-completion/fish/gita.fish
Normal file
17
auto-completion/fish/gita.fish
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
function __fish_gita_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
|
||||
gita 8>&1 9>&2 1>&9 2>&1
|
||||
else
|
||||
gita 8>&1 9>&2 1>/dev/null 2>&1
|
||||
end
|
||||
end
|
||||
complete --command gita -f -a '(__fish_gita_complete)'
|
Loading…
Add table
Add a link
Reference in a new issue