mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 01:52:39 +08:00
7 lines
179 B
Fish
7 lines
179 B
Fish
|
function __kitty_completions
|
||
|
# Send all words up to the one before the cursor
|
||
|
commandline -cop | kitty +complete fish
|
||
|
end
|
||
|
|
||
|
complete -f -c kitty -a "(__kitty_completions)"
|