summaryrefslogtreecommitdiff
path: root/Completion
diff options
context:
space:
mode:
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Core/_oldlist4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Core/_oldlist b/Completion/Core/_oldlist
index e28a66d83..04e952655 100644
--- a/Completion/Core/_oldlist
+++ b/Completion/Core/_oldlist
@@ -14,7 +14,7 @@ zstyle -s ":completion:${curcontext}:" old-list list
# completer named by the oldlist_list key.
if [[ -n $compstate[old_list] && $list != never &&
- $LASTWIDGET != _complete_help ]]; then
+ $LASTWIDGET != _complete_help && $WIDGET != _complete_help ]]; then
if [[ $WIDGET = *list* && ( $list = always || $list != shown ) ]]; then
compstate[old_list]=keep
return 0
@@ -35,7 +35,7 @@ fi
# existing list (even if it was generated by another widget).
if [[ -z $compstate[old_insert] && -n $compstate[old_list] &&
- $LASTWIDGET != _complete_help ]]; then
+ $LASTWIDGET != _complete_help && $WIDGET != _complete_help ]]; then
compstate[old_list]=keep
return 0
elif [[ $WIDGET = *complete(|-prefix|-word) ]] &&