mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-07-16 06:21:29 +02: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
|