mirror of
https://github.com/graysky2/anything-sync-daemon.git
synced 2026-03-01 18:23:30 +01:00
Fix typos in file 'zsh-completion' which is imported from https://github.com/graysky2/profile-sync-daemon/pull/106 For the same reason in https://github.com/graysky2/anything-sync-daemon/pull/17 This fixes https://github.com/graysky2/anything-sync-daemon/pull/20
13 lines
270 B
Plaintext
13 lines
270 B
Plaintext
#compdef asd anything-sync-daemon
|
|
|
|
_asd() {
|
|
local -a options
|
|
|
|
options=('p:Preview what asd will do/is doing and printout useful info'
|
|
'c:Clean (delete without prompting) ALL crashrecovery dirs for all sync targets')
|
|
|
|
_describe 'options' options
|
|
}
|
|
|
|
_asd
|