Skip to content

Instantly share code, notes, and snippets.

@pymen
Last active November 27, 2018 17:51
Show Gist options
  • Save pymen/7972272 to your computer and use it in GitHub Desktop.
Save pymen/7972272 to your computer and use it in GitHub Desktop.
zsh abbreviations
#http://zshwiki.org/home/examples/zleiab
typeset -Ag abbreviations
abbreviations=(
"Im" "| more"
"Ia" "| awk"
"Ig" "| grep"
"Ieg" "| egrep"
"Iag" "| agrep"
"Igr" "| groff -s -p -t -e -Tlatin1 -mandoc"
"Ip" "| $PAGER"
"Ih" "| head"
"Ik" "| keep"
"It" "| tail"
"Is" "| sort"
"Iv" "| ${VISUAL:-${EDITOR}}"
"Iw" "| wc"
"Ix" "| xargs"
)
magic-abbrev-expand() {
local MATCH
LBUFFER=${LBUFFER%%(#m)[_a-zA-Z0-9]#}
LBUFFER+=${abbreviations[$MATCH]:-$MATCH}
LBUFFER+=" "
#zle self-insert
}
no-magic-abbrev-expand() {
LBUFFER+=' '
}
zle -N magic-abbrev-expand
zle -N no-magic-abbrev-expand
bindkey ",," magic-abbrev-expand
bindkey "^x " no-magic-abbrev-expand
bindkey -M isearch " " self-insert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment