Create new completions directory for zsh
This commit is contained in:
12
zsh/completions/_open
Normal file
12
zsh/completions/_open
Normal file
@ -0,0 +1,12 @@
|
||||
#compdef open
|
||||
|
||||
# ========== Completions ==========
|
||||
local arguments
|
||||
|
||||
arguments=(
|
||||
{-d,--dir}'[select a directory to search in]'
|
||||
{-h,--help}'[show this help page]'
|
||||
'*:filename:_files'
|
||||
)
|
||||
|
||||
_arguments -s $arguments
|
Reference in New Issue
Block a user