1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-05-21 12:01:54 +02:00

51108: single letter forms of Shift-JIS / EUC-JP options were reversed

This commit is contained in:
Shohei YOSHIDA 2022-12-06 20:47:10 -08:00 committed by Bart Schaefer
parent f9bb03cd72
commit 2473d83521
2 changed files with 7 additions and 4 deletions
ChangeLog
Completion/Unix/Command

View file

@ -1,5 +1,8 @@
2022-12-06 Bart Schaefer <schaefer@zsh.org>
* Shohei YOSHIDA: 51108: Completion/Unix/Command/_nkf: single
letter forms of Shift-JIS / EUC-JP options were reversed
* Atte Peltomäki: 51088: Functions/Misc/colors: typo in comment
2022-12-03 Bart Schaefer <schaefer@zsh.org>

View file

@ -10,8 +10,8 @@ _arguments -s \
'(-u)-b[Output is buffered]' \
'(-b)-u[Output is unbuffered]' \
'($outputs)'{-j,--jis}'[Output is JIS 7 bit]' \
'($outputs)'{-e,--sjis}'[Output is Shift JIS]' \
'($outputs)'{-s,--euc}'[Output is EUC-JP]' \
'($outputs)'{-s,--sjis}'[Output is Shift JIS]' \
'($outputs)'{-e,--euc}'[Output is EUC-JP]' \
'($outputs)'{-w,--utf8}'[Output is UTF-8 (No BOM)]' \
'($outputs)-w8[Output is UTF-8 (BOM)]' \
'($outputs)'{-w16,-w16b0,--utf16}'[Output is UTF-16 (BigEndian; No BOM)]' \
@ -23,8 +23,8 @@ _arguments -s \
'($outputs)--mac[Output is for Mac]' \
'($outputs)--windows[Output is for Windows]' \
'($inputs)-J[Input assumption is JIS 7 bit]' \
'($inputs)-E[Input assumption is Shift JIS]' \
'($inputs)-S[Input assumption is EUC-JP]' \
'($inputs)-S[Input assumption is Shift JIS]' \
'($inputs)-E[Input assumption is EUC-JP]' \
'($inputs)-W[Input assumption is UTF-8 (No BOM)]' \
'($inputs)-W8[Input assumption is UTF-8 (BOM)]' \
'($inputs)-W16[Input assumption is UTF-16 (BigEndian; No BOM)]' \