diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Commands/_bash_completions | 2 | ||||
-rw-r--r-- | Completion/Commands/_complete_debug | 2 | ||||
-rw-r--r-- | Completion/Commands/_complete_help | 2 | ||||
-rw-r--r-- | Completion/Commands/_correct_word | 2 | ||||
-rw-r--r-- | Completion/Commands/_expand_word | 2 | ||||
-rw-r--r-- | Completion/Commands/_history_complete_word | 2 | ||||
-rw-r--r-- | Completion/Commands/_next_tags | 2 | ||||
-rw-r--r-- | Completion/Core/_expand | 4 | ||||
-rw-r--r-- | Completion/Core/_main_complete | 2 | ||||
-rw-r--r-- | Completion/Core/_path_files | 2 | ||||
-rw-r--r-- | Completion/Core/compdump | 2 |
11 files changed, 12 insertions, 12 deletions
diff --git a/Completion/Commands/_bash_completions b/Completion/Commands/_bash_completions index fd2222797..3c19358b7 100644 --- a/Completion/Commands/_bash_completions +++ b/Completion/Commands/_bash_completions @@ -25,7 +25,7 @@ # that will not have been overridden, so you should add '~' to the # list of keys at the top of the for-loop. -setopt localoptions nullglob rcexpandparam extendedglob +setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays local key=$KEYS[-1] expl diff --git a/Completion/Commands/_complete_debug b/Completion/Commands/_complete_debug index 4f0ce7f27..3269eed4b 100644 --- a/Completion/Commands/_complete_debug +++ b/Completion/Commands/_complete_debug @@ -1,6 +1,6 @@ #compdef -k complete-word \C-x? -setopt localoptions nullglob rcexpandparam extendedglob +setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays setopt localtraps noerrexit ; trap - ZERR diff --git a/Completion/Commands/_complete_help b/Completion/Commands/_complete_help index 36c41607b..9144ff991 100644 --- a/Completion/Commands/_complete_help +++ b/Completion/Commands/_complete_help @@ -1,7 +1,7 @@ #compdef -k complete-word \C-xh _complete_help() { - setopt localoptions nullglob rcexpandparam extendedglob + setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays exec </dev/null # ZLE closes stdin, which can cause errors diff --git a/Completion/Commands/_correct_word b/Completion/Commands/_correct_word index 2d8d3065a..9df2166c5 100644 --- a/Completion/Commands/_correct_word +++ b/Completion/Commands/_correct_word @@ -7,7 +7,7 @@ # If configurations keys with the prefix `correctword_' are # given they override those starting with `correct_'. -setopt localoptions nullglob rcexpandparam extendedglob +setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays local curcontext="$curcontext" diff --git a/Completion/Commands/_expand_word b/Completion/Commands/_expand_word index c105e0322..fddd065ee 100644 --- a/Completion/Commands/_expand_word +++ b/Completion/Commands/_expand_word @@ -2,7 +2,7 @@ # Simple completion front-end implementing expansion. -setopt localoptions nullglob rcexpandparam extendedglob +setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays local curcontext="$curcontext" diff --git a/Completion/Commands/_history_complete_word b/Completion/Commands/_history_complete_word index 01cd32fce..db387daa7 100644 --- a/Completion/Commands/_history_complete_word +++ b/Completion/Commands/_history_complete_word @@ -16,7 +16,7 @@ # range -- range of history words to complete _history_complete_word () { - setopt localoptions nullglob rcexpandparam extendedglob + setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays local expl direction stop curcontext="$curcontext" diff --git a/Completion/Commands/_next_tags b/Completion/Commands/_next_tags index ffed800d0..22d833eea 100644 --- a/Completion/Commands/_next_tags +++ b/Completion/Commands/_next_tags @@ -3,7 +3,7 @@ # Main widget. _next_tags() { - setopt localoptions nullglob rcexpandparam extendedglob + setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays local ins ops="$PREFIX$SUFFIX" diff --git a/Completion/Core/_expand b/Completion/Core/_expand index 09d89a30b..bcc357ead 100644 --- a/Completion/Core/_expand +++ b/Completion/Core/_expand @@ -63,7 +63,7 @@ if [[ "$force" = *s* ]] || eval exp\=\( ${${(q)exp}:gs/\\{/\{/:gs/\\}/\}/} \) eval 'exp=( ${${(e)exp//\\[ ]/ }//(#b)([ -])/\\$match[1]} )' 2>/dev/null +\\])/\\$match[1]} )' 2>/dev/null else exp=( ${exp:s/\\\$/\$} ) fi @@ -77,7 +77,7 @@ subd=("$exp[@]") # Now try globbing. [[ "$force" = *g* ]] || zstyle -T ":completion:${curcontext}:" glob && - eval 'exp=( ${~exp} )' 2>/dev/null + eval 'exp=( ${~exp} ); exp=( ${exp//(#b)([][()|*?^#~<>\\])/\\${match[1]}} )' 2>/dev/null # If we don't have any expansions or only one and that is the same # as the original string, we let other completers run. diff --git a/Completion/Core/_main_complete b/Completion/Core/_main_complete index 7f0e94358..8c856f4be 100644 --- a/Completion/Core/_main_complete +++ b/Completion/Core/_main_complete @@ -16,7 +16,7 @@ # which makes the output of setopt and unsetopt reflect a different # state than the global one for which you are completing. -setopt localoptions nullglob rcexpandparam extendedglob +setopt localoptions nullglob rcexpandparam extendedglob noshglob unsetopt markdirs globsubst shwordsplit nounset ksharrays exec </dev/null # ZLE closes stdin, which can cause errors diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index 26d2be6f3..8bb00bdf9 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -421,7 +421,7 @@ for prepath in "$prepaths[@]"; do # There are more components, so skip over the next components and make a # slash be added. - tmp1=( ${tmp1//(#b)([][()|*?^#~<>])/\\${match[1]}} ) + tmp1=( ${tmp1//(#b)([][()|*?^#~<>\\])/\\${match[1]}} ) tmp2="${(M)tpre##((.|..|)/)##}" if [[ -n "$tmp2" ]]; then skipped="/$tmp2" diff --git a/Completion/Core/compdump b/Completion/Core/compdump index ba65d1501..25df17fbf 100644 --- a/Completion/Core/compdump +++ b/Completion/Core/compdump @@ -14,7 +14,7 @@ # to see if auto-dump should re-dump the dump-file. emulate -L zsh -setopt extendedglob +setopt extendedglob noshglob typeset _d_file _d_f _d_bks _d_line _d_als _d_files |