mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-20 05:53:52 +01:00
10 lines
274 B
Plaintext
10 lines
274 B
Plaintext
|
# This implements a bash-style down-case-word.
|
||
|
# To use,
|
||
|
# zle -N bash-down-case-word
|
||
|
# bindkey '...' bash-down-case-word
|
||
|
# or if you wish to replace existing down-case-word bindings,
|
||
|
# zle -N down-case-word bash-down-case-word
|
||
|
|
||
|
local WORDCHARS=''
|
||
|
zle .down-case-word
|