Add doas completion (2) (missing file in previous commit)

This commit is contained in:
Benjamin VAUDOUR 2022-08-13 09:19:43 +02:00
parent 9f25786e60
commit 406023ed33
1 changed files with 10 additions and 0 deletions

10
completion/doas.elv Normal file
View File

@ -0,0 +1,10 @@
fn complete {|@argv|
if (and (> (count $argv) 2) (has-key $edit:completion:arg-completer $argv[1])) {
$edit:completion:arg-completer[$argv[1]] (all $argv[1:])
} else {
edit:complete-sudo $@argv
}
}
set edit:completion:arg-completer[doas] = $edit:complete-sudo~
#edit:completion:arg-completer[doas] = $-complete~