mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
# 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
|