mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00: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)"
|