1
0
Fork 0

Set WORDCHARS in the editor module

Set WORDCHARS in the editor module instead of in the completion module.
pull/416/head
Joseph Irwin 12 years ago
parent 2baa4dce0c
commit deed47c136

@ -30,9 +30,6 @@ setopt AUTO_PARAM_SLASH # If completed parameter is a directory, add a traili
unsetopt MENU_COMPLETE # Do not autoselect the first completion entry.
unsetopt FLOW_CONTROL # Disable start/stop characters in shell editor.
# Treat these characters as part of a word.
WORDCHARS='*?_-.[]~&;!#$%^(){}<>'
#
# Styles
#

@ -53,6 +53,9 @@ fi
# Beep on error in line editor.
setopt BEEP
# Treat these characters as part of a word.
WORDCHARS='*?_-.[]~&;!#$%^(){}<>'
#
# Variables
#

Loading…
Cancel
Save