mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-12 11:39:33 +02:00
8 lines
275 B
Plaintext
8 lines
275 B
Plaintext
#compdef kitty
|
|
|
|
(( ${+commands[kitty]} )) || builtin return
|
|
builtin local src cmd=${(F)words:0:$CURRENT}
|
|
# Send all words up to the word the cursor is currently on.
|
|
src=$(builtin command kitty +complete zsh "_matcher=$_matcher" <<<$cmd) || builtin return
|
|
builtin eval "$src"
|