mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-26 18:01:03 +02:00
44249: Completion: Handle zsh/files built-ins in _mv and _rmdir
This commit is contained in:
parent
9208e321da
commit
d56a43f802
4 changed files with 8 additions and 3 deletions
|
@ -2,6 +2,11 @@
|
|||
|
||||
* 44234: Completion/Unix/Command/_ssh: Update for OpenSSH 8.0
|
||||
|
||||
* 44249: Completion/Unix/Command/_mv,
|
||||
Completion/Unix/Command/_rmdir,
|
||||
Completion/Unix/Type/_directories: Handle zsh/files built-ins
|
||||
in _mv and _rmdir
|
||||
|
||||
2019-04-25 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 44248: Src/init.c: Mark SIGQUIT as ignored if ignored at
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef mv gmv
|
||||
#compdef mv gmv zf_mv
|
||||
|
||||
local args variant
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef rmdir grmdir
|
||||
#compdef rmdir grmdir zf_rmdir
|
||||
|
||||
local variant
|
||||
local -a args
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef zf_rmdir dircmp -P -value-,*path,-default-
|
||||
#compdef dircmp -P -value-,*path,-default-
|
||||
|
||||
local expl
|
||||
|
||||
|
|
Loading…
Reference in a new issue