blob: 963ea012a83c18af4d1bd1c017ec1c05ce130338 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# This implements a bash-style forward-word.
# To use,
# zle -N bash-forward-word
# bindkey '...' bash-forward-word
# or if you wish to replace existing forward-word bindings,
# zle -N forward-word bash-forward-word
local WORDCHARS=''
zle .forward-word
|