From 533b29e5e3d1025ee82eebbf012934bdeff06f96 Mon Sep 17 00:00:00 2001 From: Tim Huizinga Date: Fri, 13 Mar 2026 06:34:23 +0100 Subject: [PATCH] Added completions for tula --- zsh/custom/completions/_tula | 7 +++++++ zsh/dot-zshrc | 1 + 2 files changed, 8 insertions(+) create mode 100644 zsh/custom/completions/_tula diff --git a/zsh/custom/completions/_tula b/zsh/custom/completions/_tula new file mode 100644 index 0000000..fb5af18 --- /dev/null +++ b/zsh/custom/completions/_tula @@ -0,0 +1,7 @@ +#compdef tula + +_tula_completion() { + eval $(env _TYPER_COMPLETE_ARGS="${words[1,$CURRENT]}" _TULA_COMPLETE=complete_zsh tula) +} + +compdef _tula_completion tula \ No newline at end of file diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index a42113e..73d94d6 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -59,6 +59,7 @@ zvm_after_init_commands+=('autopair-init') # Might cause issues? KEYTIMEOUT=1 +fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/completions fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions/src autoload -U compinit && compinit source "$ZSH/oh-my-zsh.sh"