diff options
author | Oliver Kiddle <opk@zsh.org> | 2021-10-26 18:35:36 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2021-10-26 18:35:36 +0200 |
commit | 4e9d0075f438c4404b29ad6901f6ed6aa4d0fdc6 (patch) | |
tree | c3d4ef7aa76460795ecada6d284af72aac4d9242 /Completion/Unix/Command/_less | |
parent | 8764cba90b13238d0d4bf62383cab6039508c7cf (diff) | |
download | zsh-4e9d0075f438c4404b29ad6901f6ed6aa4d0fdc6.tar.gz zsh-4e9d0075f438c4404b29ad6901f6ed6aa4d0fdc6.zip |
49519: quote completed options as needed and remove the now superfluous quotes from option specifications
Diffstat (limited to 'Completion/Unix/Command/_less')
-rw-r--r-- | Completion/Unix/Command/_less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_less b/Completion/Unix/Command/_less index 0b474b991..ae912a633 100644 --- a/Completion/Unix/Command/_less +++ b/Completion/Unix/Command/_less @@ -80,9 +80,9 @@ _arguments -S -s -A "[-+]*" \ '--no-keypad[disable use of keypad terminal init string]' \ '(-y --max-forw-scroll)'{-y,--max-forw-scroll}'[specify forward scroll limit]' \ '(-z --window)'{-z+,--window=}'[specify scrolling window size]:lines' \ - '(-\" --quotes)'{-\"+,--quotes=}'[change quoting character]:quoting characters' \ + '(-" --quotes)'{-\"+,--quotes=}'[change quoting character]:quoting characters' \ '(-~ --tilde)'{-~,--tilde}"[don't display tildes after end of file]" \ - '(-\# --shift)'{-\#+,--shift=}"[specify amount to move when scrolling horizontally]:number" \ + '(-# --shift)'{-\#+,--shift=}"[specify amount to move when scrolling horizontally]:number" \ '--file-size[automatically determine the size of the input file]' \ '--incsearch[search file as each pattern character is typed in]' \ '--line-num-width=[set the width of line number field]:width [7]' \ |