diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-14 19:00:09 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-12-14 19:18:19 +0530 |
commit | 09083f3ed6749567c4e315a68f071811ee776f80 (patch) | |
tree | bc38eceb7299e7e32df96e5637d2b38596fad0ef /misc | |
parent | 04d10fc94bcf977f84b22fe0a215ca22c5e55853 (diff) | |
download | nnn-09083f3ed6749567c4e315a68f071811ee776f80.tar.gz |
Update docs
Diffstat (limited to 'misc')
-rw-r--r-- | misc/auto-completion/bash/nnn-completion.bash | 2 | ||||
-rw-r--r-- | misc/auto-completion/fish/nnn.fish | 2 | ||||
-rw-r--r-- | misc/auto-completion/zsh/_nnn | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/misc/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash index 00e34d5..cbcc814 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -19,6 +19,7 @@ _nnn () -e -E -f + -g -H -i -K @@ -27,7 +28,6 @@ _nnn () -p -r -R - -s -S -t -v diff --git a/misc/auto-completion/fish/nnn.fish b/misc/auto-completion/fish/nnn.fish index c1f2fac..164aaaa 100644 --- a/misc/auto-completion/fish/nnn.fish +++ b/misc/auto-completion/fish/nnn.fish @@ -18,6 +18,7 @@ complete -c nnn -s d -d 'start in detail mode' complete -c nnn -s e -r -d 'load session by name' -x -a '@\t"last session" (ls $sessions_dir)' complete -c nnn -s E -d 'use EDITOR for undetached edits' complete -c nnn -s f -d 'run filter as cmd on prompt key' +complete -c nnn -s g -d 'regex filters' complete -c nnn -s H -d 'show hidden files' complete -c nnn -s i -d 'start in navigate-as-you-type mode' complete -c nnn -s K -d 'detect key collision' @@ -26,7 +27,6 @@ complete -c nnn -s o -d 'open files only on Enter' complete -c nnn -s p -r -d 'copy selection to file' -a '-\tstdout' complete -c nnn -s r -d 'show cp, mv progress (Linux-only)' complete -c nnn -s R -d 'disable rollover at edges' -complete -c nnn -s s -d 'use substring match for filters' complete -c nnn -s S -d 'start in disk usage analyzer mode' complete -c nnn -s t -d 'disable dir auto-select' complete -c nnn -s v -d 'show program version and exit' diff --git a/misc/auto-completion/zsh/_nnn b/misc/auto-completion/zsh/_nnn index 34db851..a7ce0ba 100644 --- a/misc/auto-completion/zsh/_nnn +++ b/misc/auto-completion/zsh/_nnn @@ -16,6 +16,7 @@ args=( '(-e)-e[load session]:session name' '(-E)-E[use EDITOR for undetached edits]' '(-f)-f[run filter as cmd on prompt key]' + '(-g)-g[regex filters]' '(-H)-H[show hidden files]' '(-i)-i[start in navigate-as-you-type mode]' '(-K)-K[detect key collision]' @@ -24,7 +25,6 @@ args=( '(-p)-p[copy selection to file]:file name' '(-r)-r[show cp, mv progress (Linux-only)]' '(-R)-R[disable rollover at edges]' - '(-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]' |