aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.zfunc/_kitty
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zfunc/_kitty')
-rw-r--r--zsh/.zfunc/_kitty14
1 files changed, 0 insertions, 14 deletions
diff --git a/zsh/.zfunc/_kitty b/zsh/.zfunc/_kitty
deleted file mode 100644
index 15918b5..0000000
--- a/zsh/.zfunc/_kitty
+++ /dev/null
@@ -1,14 +0,0 @@
-autoload -Uz compinit
-compinit
-
-_kitty() {
- local src
- # Send all words up to the word the cursor is currently on
- src=$(printf "%s
-" "${(@)words[1,$CURRENT]}" | kitty +complete zsh)
- if [[ $? == 0 ]]; then
- eval ${src}
- fi
-}
-compdef _kitty kitty
-