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