mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-22 18:21:13 -03:00
12 lines
359 B
Fish
12 lines
359 B
Fish
# localization: skip(private)
|
|
function __fish_argcomplete_complete
|
|
set -lx _ARGCOMPLETE 1
|
|
set -lx _ARGCOMPLETE_IFS \n
|
|
set -lx _ARGCOMPLETE_SUPPRESS_SPACE 1
|
|
set -lx _ARGCOMPLETE_SHELL fish
|
|
set -lx COMP_LINE (commandline -pc)
|
|
set -lx COMP_POINT (string length (commandline -cp))
|
|
set -lx COMP_TYPE
|
|
$argv 8>&1 9>&2 2>/dev/null
|
|
end
|