diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Base/Utility/_describe | 2 | ||||
-rw-r--r-- | Completion/Zsh/Command/_zstyle | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Base/Utility/_describe b/Completion/Base/Utility/_describe index 0a291302b..eafdcc35b 100644 --- a/Completion/Base/Utility/_describe +++ b/Completion/Base/Utility/_describe @@ -25,7 +25,7 @@ fi zstyle -T ":completion:${curcontext}:$_type" verbose && _showd=yes zstyle -s ":completion:${curcontext}:$_type" list-separator _sep || _sep=-- -zstyle -s ":completion:${curcontext}:$_type" max-match-length _mlen || +zstyle -s ":completion:${curcontext}:$_type" max-matches-width _mlen || _mlen=$((COLUMNS/2)) _descr="$1" diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle index db4d6604b..bab202ca0 100644 --- a/Completion/Zsh/Command/_zstyle +++ b/Completion/Zsh/Command/_zstyle @@ -80,7 +80,7 @@ styles=( matcher c: matcher-list c: max-errors c: - max-match-length c:max-match-length + max-matches-width c:max-matches-width menu c:boolauto muttrc c:_files numbers c:bool @@ -383,8 +383,8 @@ while (( $#state )); do _message -e separators 'separator string' ;; - max-match-length) - _message -e numbers 'maximum display length for matches' + max-matches-width) + _message -e numbers 'maximum display width for matches' ;; urgh) |