My build of nnn with minor changes
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #compdef nnn
- #
- # Completion definition for nnn.
- #
- # Author:
- # Arun Prakash Jana <engineerarun@gmail.com>
- #
-
- setopt localoptions noshwordsplit noksharrays
- local -a args
- args=(
- '(-a)-a[use access time]'
- '(-b)-b[bookmark key to open]:key char'
- '(-d)-d[start in detail mode]'
- '(-H)-H[show hidden files]'
- '(-i)-i[start in navigate-as-you-type mode]'
- '(-n)-n[use version compare to sort files]'
- '(-o)-o[open files only on Enter]'
- '(-p)-p[copy selection to file]:file name'
- '(-r)-r[show cp, mv progress (Linux-only)]'
- '(-s)-s[use substring match for filters]'
- '(-S)-S[start in disk usage analyzer mode]'
- '(-t)-t[disable dir auto-select]'
- '(-v)-v[show program version and exit]'
- '(-h)-h[show program help]'
- '*:filename:_files'
- )
- _arguments -S -s $args
|