Add erdtree shell completions

main
Buddy Sandidge 2 years ago
parent a790373988
commit 9eed8c6c80

@ -8,6 +8,8 @@ setopt INC_APPEND_HISTORY
setopt HIST_IGNORE_DUPS setopt HIST_IGNORE_DUPS
setopt EXTENDED_HISTORY setopt EXTENDED_HISTORY
autoload -Uz compinit && compinit
# Use emacs keybindings even if our EDITOR is set to vi # Use emacs keybindings even if our EDITOR is set to vi
bindkey -e bindkey -e

@ -13,7 +13,7 @@ if [[ -d "${XDG_CONFIG_HOME}/zsh/zshrc.d" ]]; then
for file in "${XDG_CONFIG_HOME}"/zsh/zshrc.d/*.zsh(N); do for file in "${XDG_CONFIG_HOME}"/zsh/zshrc.d/*.zsh(N); do
if [ -r "$file" ]; then if [ -r "$file" ]; then
#shellcheck disable=1090 #shellcheck disable=1090
. "$file" source "$file"
fi fi
done done
fi fi

@ -0,0 +1 @@
eval "$(et --completions bash)"

@ -0,0 +1 @@
eval "$(et --completions fish)"

@ -0,0 +1,4 @@
autoload -Uz compinit
compinit
eval "$(et --completions zsh)"
Loading…
Cancel
Save