mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-01 18:30:55 +01:00
22435: completion for GNU comm.
This commit is contained in:
parent
f52938607d
commit
33185e23a3
2 changed files with 15 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-04-30 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 22435: Completion/Unix/Command/_comm: completion for
|
||||
GNU comm.
|
||||
|
||||
2006-04-28 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 22434, intrigeri@boum.org:
|
||||
|
|
|
|||
10
Completion/Unix/Command/_comm
Normal file
10
Completion/Unix/Command/_comm
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#compdef comm
|
||||
|
||||
_arguments \
|
||||
'-1[suppress lines unique to FILE1]' \
|
||||
'-2[suppress lines unique to FILE2]' \
|
||||
'-3[suppress lines that appear in both files]' \
|
||||
'--help' \
|
||||
'--version' \
|
||||
'1:file1 to compare:_files' \
|
||||
'2:file2 to compare:_files'
|
||||
Loading…
Add table
Add a link
Reference in a new issue