nnn/misc/auto-completion/zsh/_nnn

38 lines
1.1 KiB
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=(
2019-08-30 15:25:23 +00:00
'(-a)-a[use access time]'
'(-A)-A[disable dir auto-select]'
2018-12-09 03:06:00 +00:00
'(-b)-b[bookmark key to open]:key char'
2019-11-30 12:44:39 +00:00
'(-c)-c[cli-only opener]'
2019-08-16 17:45:29 +00:00
'(-d)-d[start in detail mode]'
'(-e)-e[open text files in $VISUAL/$EDITOR/vi]'
2019-11-30 12:44:39 +00:00
'(-E)-E[use EDITOR for undetached edits]'
2019-12-14 13:30:09 +00:00
'(-g)-g[regex filters]'
2019-08-16 17:45:29 +00:00
'(-H)-H[show hidden files]'
2019-10-11 15:29:22 +00:00
'(-K)-K[detect key collision]'
'(-n)-n[start in navigate-as-you-type mode]'
'(-o)-o[open files only on Enter]'
2018-12-09 03:06:00 +00:00
'(-p)-p[copy selection to file]:file name'
2019-12-14 17:58:13 +00:00
'(-Q)-Q[disable quit confirmation]'
'(-r)-r[show cp, mv progress (Linux-only)]'
2019-12-01 17:30:06 +00:00
'(-R)-R[disable rollover at edges]'
'(-s)-s[load session]:session name'
2017-09-02 06:53:19 +00:00
'(-S)-S[start in disk usage analyzer mode]'
'(-t)-t[timeout to lock]:seconds'
2019-12-28 05:45:38 +00:00
'(-v)-v[use version compare to sort files]'
'(-V)-V[show program version and exit]'
'(-x)-x[notis, sel to system clipboard]'
2019-08-16 17:45:29 +00:00
'(-h)-h[show program help]'
2018-03-02 12:01:11 +00:00
'*:filename:_files'
2017-09-02 06:53:19 +00:00
)
_arguments -S -s $args