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