1

Bring back some old autocomplete features

This commit is contained in:
Evan Pratten 2022-02-22 19:04:22 -05:00
parent 4594ce53a2
commit d2ccc615e5
2 changed files with 18 additions and 0 deletions

View File

@ -6,6 +6,7 @@ export EWCONFIG_ROOT="$HOME/.config/ewconfig"
. $EWCONFIG_ROOT/configs/zsh/prompt.sh
. $EWCONFIG_ROOT/configs/zsh/macros.sh
. $EWCONFIG_ROOT/configs/zsh/keybinds.sh
. $EWCONFIG_ROOT/configs/zsh/autocomplete.sh
# Load per-host configuration
if [ -f $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh ]; then

View File

@ -0,0 +1,17 @@
# Handles case-insensitive completion
autoload -Uz compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
# Configure command history
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
# Allow up arrow to be used to go back in history based on current line contents
autoload -U up-line-or-beginning-search
autoload -U down-line-or-beginning-search
zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search
bindkey "^[[A" up-line-or-beginning-search # Up
bindkey "^[[B" down-line-or-beginning-search # Down