blob: 1a61db64c308053ae689a53d8d9053c0cab2580d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# 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
|