nnn/scripts/auto-completion/zsh/_nnn

27 lines
744 B
Plaintext
Raw Normal View History

2017-09-02 06:53:19 +00:00
#compdef nnn
#
# Completion definition for nnn.
#
# Author:
# Arun Prakash Jana <engineerarun@gmail.com>
#
setopt localoptions noshwordsplit noksharrays
local -a args
args=(
2018-12-09 03:06:00 +00:00
'(-b)-b[bookmark key to open]:key char'
2019-03-11 14:54:44 +00:00
'(-d)-d[show hidden files]'
2017-09-02 06:53:19 +00:00
'(-e)-e[use exiftool instead of mediainfo]'
'(-h)-h[show this help and exit]'
'(-i)-i[start in navigate-as-you-type mode]'
'(-l)-l[start in light mode (fewer details)]'
'(-n)-n[use version compare to sort files]'
2018-12-09 03:06:00 +00:00
'(-p)-p[copy selection to file]:file name'
2019-02-05 19:08:55 +00:00
'(-s)-s[use substring match for filters]'
2017-09-02 06:53:19 +00:00
'(-S)-S[start in disk usage analyzer mode]'
'(-v)-v[show program version and exit]'
2019-03-20 03:44:39 +00:00
'(-w)-w[wild load]'
2018-03-02 12:01:11 +00:00
'*:filename:_files'
2017-09-02 06:53:19 +00:00
)
_arguments -S -s $args