mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-12 01:11:27 +02:00
unposted: fix syntax errors in recently added completers
This commit is contained in:
parent
6f4cf79140
commit
a1f9b1324d
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2020-08-08 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
|
* unposted: Completion/BSD/Command/_kdump,
|
||||||
|
Completion/BSD/Type/_ktrace_points: fix syntax errors in
|
||||||
|
completers added in 45940
|
||||||
|
|
||||||
2020-08-05 Mikael Magnusson <mikachu@gmail.com>
|
2020-08-05 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
* 46280: Completion/compinit: add -w to explain why compdump runs
|
* 46280: Completion/compinit: add -w to explain why compdump runs
|
||||||
|
|
|
@ -68,7 +68,7 @@ case $OSTYPE; in
|
||||||
'-e[interpret system call maps using the specified emulation]:emulation:'
|
'-e[interpret system call maps using the specified emulation]:emulation:'
|
||||||
'-N[suppress system call name translation]'
|
'-N[suppress system call name translation]'
|
||||||
'-X[Display GIO data in hex and ascii in groups of specified size]:size:(1 2 4 8 16)'
|
'-X[Display GIO data in hex and ascii in groups of specified size]:size:(1 2 4 8 16)'
|
||||||
'-x[Display GIO data in hex and ascii]
|
'-x[Display GIO data in hex and ascii]'
|
||||||
'1:dump file:_files'
|
'1:dump file:_files'
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -45,6 +45,6 @@ case $OSTYPE in
|
||||||
'X[trace environment in execve(2)]'
|
'X[trace environment in execve(2)]'
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
easc
|
esac
|
||||||
|
|
||||||
_values -s '' 'ktrace point' $points
|
_values -s '' 'ktrace point' $points
|
||||||
|
|
Loading…
Reference in a new issue