From bc59ac6b51cc643877d0ff962d73387e4c4d89a5 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Tue, 7 Sep 2021 23:09:28 -0500 Subject: [PATCH] Fix bindkey Top 10 Things That Fix Everything And Then Some --- zshrc | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/zshrc b/zshrc index 9c85d42..cd92c77 100644 --- a/zshrc +++ b/zshrc @@ -8,12 +8,8 @@ load_plugin "zsh-completions" load_plugin "zsh-history-substring-search" load_plugin "zsh-syntax-highlighting" -bindkey "^[[A" history-beginning-search-backward -bindkey "^[[B" history-beginning-search-forward -# Preserve opacity -# See: https://github.com/zsh-users/zsh-autosuggestions/issues/431#issuecomment-502329696 -# Will most likely need removal at a point. -ZSH_AUTOSUGGEST_IGNORE_WIDGETS=(${(@)ZSH_AUTOSUGGEST_IGNORE_WIDGETS:#zle-\*} zle-\^line-init) +bindkey '^[[A' history-beginning-search-backward +bindkey '^[[B' history-beginning-search-forward source $HOME/.zsh/expand-multiple-dots.zsh # cd .../.../? setopt prompt_subst # Make sure prompt is able to be generated properly.