1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-03 20:20:56 +02:00

github #44: Allow completion for picocom to list symlinks to character devices

This commit is contained in:
Damien Thébault 2020-01-07 13:35:53 +01:00 committed by Daniel Shahaf
parent 8500403b66
commit 58ff4adbb0
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2020-01-07 Damien Thébault <damien.thebault@gmail.com>
* github #44: Completion/Unix/Command/_picocom: Allow completion
for picocom to list symlinks to character devices
2020-01-06 dana <dana@dana.is>
* Eitan Adler: 45245: Completion/Unix/Command/_gcc: add some

View file

@ -47,7 +47,7 @@ function _picocom () {
'--omap[define output character map]:output character map:'
'--emap[define local echo character map]:local echo character map:'
'(--help -h)'{--help,-h}'[display help message]'
'*:device:_files -g "*(%c)"' )
'*:device:_files -g "*(-%c)"' )
_arguments -C : "${args[@]}"
}