diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-19 08:58:17 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-10-19 08:58:17 +0000 |
commit | e14a02f4408039ce7aa46ea085a7cf9156e648d0 (patch) | |
tree | c542746463209137959b70c977e7d86268129de4 /Completion/Commands | |
parent | 16d7e31ae81bdd87dd90ce91d9072006e43f6596 (diff) | |
download | zsh-e14a02f4408039ce7aa46ea085a7cf9156e648d0.tar.gz zsh-e14a02f4408039ce7aa46ea085a7cf9156e648d0.tar.xz zsh-e14a02f4408039ce7aa46ea085a7cf9156e648d0.zip |
simplify setting standard completion system options using $_comp_options (13036)
Diffstat (limited to 'Completion/Commands')
-rw-r--r-- | Completion/Commands/_bash_completions | 3 | ||||
-rw-r--r-- | Completion/Commands/_complete_debug | 3 | ||||
-rw-r--r-- | Completion/Commands/_complete_help | 4 | ||||
-rw-r--r-- | Completion/Commands/_correct_word | 3 | ||||
-rw-r--r-- | Completion/Commands/_expand_word | 3 | ||||
-rw-r--r-- | Completion/Commands/_history_complete_word | 3 | ||||
-rw-r--r-- | Completion/Commands/_next_tags | 3 |
7 files changed, 8 insertions, 14 deletions
diff --git a/Completion/Commands/_bash_completions b/Completion/Commands/_bash_completions index 1c66bacf7..f16b5e0a4 100644 --- a/Completion/Commands/_bash_completions +++ b/Completion/Commands/_bash_completions @@ -25,8 +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 unset -unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob +setopt localoptions $_comp_options local key=$KEYS[-1] expl diff --git a/Completion/Commands/_complete_debug b/Completion/Commands/_complete_debug index bddc90313..d013f00d9 100644 --- a/Completion/Commands/_complete_debug +++ b/Completion/Commands/_complete_debug @@ -1,7 +1,6 @@ #compdef -k complete-word \C-x? -setopt localoptions nullglob rcexpandparam extendedglob unset -unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob +setopt localoptions $_comp_options setopt localtraps noerrexit ; trap - ZERR diff --git a/Completion/Commands/_complete_help b/Completion/Commands/_complete_help index 0630ebe1f..2d2ba52d9 100644 --- a/Completion/Commands/_complete_help +++ b/Completion/Commands/_complete_help @@ -1,8 +1,8 @@ #compdef -k complete-word \C-xh _complete_help() { - setopt localoptions nullglob rcexpandparam extendedglob unset - unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob + setopt localoptions $_comp_options + exec </dev/null # ZLE closes stdin, which can cause errors local _sort_tags=_help_sort_tags text i j k diff --git a/Completion/Commands/_correct_word b/Completion/Commands/_correct_word index d027dc0e4..c0b03dd02 100644 --- a/Completion/Commands/_correct_word +++ b/Completion/Commands/_correct_word @@ -7,8 +7,7 @@ # If configurations keys with the prefix `correctword_' are # given they override those starting with `correct_'. -setopt localoptions nullglob rcexpandparam extendedglob unset -unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob +setopt localoptions $_comp_options local curcontext="$curcontext" diff --git a/Completion/Commands/_expand_word b/Completion/Commands/_expand_word index 895695676..45173a4ba 100644 --- a/Completion/Commands/_expand_word +++ b/Completion/Commands/_expand_word @@ -2,8 +2,7 @@ # Simple completion front-end implementing expansion. -setopt localoptions nullglob rcexpandparam extendedglob unset -unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob +setopt localoptions $_comp_options local curcontext="$curcontext" diff --git a/Completion/Commands/_history_complete_word b/Completion/Commands/_history_complete_word index d4b06c2d2..c15cd427b 100644 --- a/Completion/Commands/_history_complete_word +++ b/Completion/Commands/_history_complete_word @@ -16,8 +16,7 @@ # range -- range of history words to complete _history_complete_word () { - setopt localoptions nullglob rcexpandparam extendedglob unset - unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob + setopt localoptions $_comp_options local expl direction stop curcontext="$curcontext" local max slice hmax=$#historywords diff --git a/Completion/Commands/_next_tags b/Completion/Commands/_next_tags index f60302c37..5d6b41e71 100644 --- a/Completion/Commands/_next_tags +++ b/Completion/Commands/_next_tags @@ -3,8 +3,7 @@ # Main widget. _next_tags() { - setopt localoptions nullglob rcexpandparam extendedglob unset - unsetopt markdirs globsubst shwordsplit shglob ksharrays cshnullglob + setopt localoptions $_comp_options local ins ops="$PREFIX$SUFFIX" |