1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 16:40:24 +02:00

15585: bash-style up- and down-case words

This commit is contained in:
Peter Stephenson 2001-08-07 10:04:10 +00:00
parent 34def9b74d
commit 5dd1ba01ea
4 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,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

View file

@ -0,0 +1,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