Various small additions

This commit is contained in:
Alexander Gehrke (crater2150) 2016-07-22 16:01:35 +02:00
parent fe3c0fb5d5
commit 05f6bf7007
11 changed files with 208 additions and 5 deletions

8
compdef/_xd Normal file
View file

@ -0,0 +1,8 @@
#compdef xd
function _xd {
typeset -a targets
targets=("${(@f)$(xd -l)}")
_describe target targets
}