mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-21 00:01:26 +01:00
9 lines
267 B
Text
9 lines
267 B
Text
# This implements a bash-style backward-word.
|
|
# To use,
|
|
# zle -N bash-backward-word
|
|
# bindkey '...' bash-backward-word
|
|
# or if you wish to replace existing backward-word bindings,
|
|
# zle -N backward-word bash-backward-word
|
|
|
|
local WORDCHARS=''
|
|
zle .backward-word
|