Skip to content

Instantly share code, notes, and snippets.

@vasi
Created July 2, 2021 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vasi/87a0cfb60ba334927b7278fb17c3a2cd to your computer and use it in GitHub Desktop.
Save vasi/87a0cfb60ba334927b7278fb17c3a2cd to your computer and use it in GitHub Desktop.
zshrc local history with arrows
up-line-or-local-history() {
zle set-local-history 1
zle up-line-or-history
zle set-local-history 0
}
zle -N up-line-or-local-history
down-line-or-local-history() {
zle set-local-history 1
zle down-line-or-history
zle set-local-history 0
}
zle -N down-line-or-local-history
bindkey '^[OA' up-line-or-local-history
bindkey '^[OB' down-line-or-local-history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment