Set WORDCHARS in the editor module
Set WORDCHARS in the editor module instead of in the completion module.
This commit is contained in:
parent
2baa4dce0c
commit
deed47c136
2 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue