nnn/misc/auto-completion/bash/nnn-completion.bash

75 lines
1.6 KiB
Bash
Raw Normal View History

2017-09-02 06:53:19 +00:00
#
# Rudimentary Bash completion definition for nnn.
#
# Author:
# Arun Prakash Jana <engineerarun@gmail.com>
#
2019-11-21 20:44:25 +00:00
_nnn ()
{
2017-09-02 06:53:19 +00:00
COMPREPLY=()
local IFS=$'\n'
2017-09-02 06:53:19 +00:00
local cur=$2 prev=$3
2019-07-08 18:05:30 +00:00
local -a opts
2017-09-02 06:53:19 +00:00
opts=(
-a
-A
2018-12-09 03:06:00 +00:00
-b
-B
2019-10-06 13:27:15 +00:00
-c
-C
2019-03-11 14:54:44 +00:00
-d
2020-09-01 17:36:26 +00:00
-D
-e
2019-11-30 12:44:39 +00:00
-E
-f
2019-12-14 13:30:09 +00:00
-g
2019-08-16 17:45:29 +00:00
-H
-i
2020-09-01 17:36:26 +00:00
-J
2019-10-11 15:29:22 +00:00
-K
-l
2019-07-14 17:30:14 +00:00
-n
-o
2018-12-09 03:06:00 +00:00
-p
-P
2019-12-14 17:58:13 +00:00
-Q
-r
2019-12-01 17:30:06 +00:00
-R
-s
2017-09-02 06:53:19 +00:00
-S
-t
2020-03-17 21:05:05 +00:00
-T
2021-03-17 17:36:08 +00:00
-u
-U
-V
-x
2019-08-16 17:45:29 +00:00
-h
2017-09-02 06:53:19 +00:00
)
2019-07-08 18:05:30 +00:00
if [[ $prev == -b ]]; then
local bookmarks=$(echo $NNN_BMS | awk -F: -v RS=\; '{print $1}')
COMPREPLY=( $(compgen -W "$bookmarks" -- "$cur") )
elif [[ $prev == -l ]]; then
return 1
2019-07-08 18:05:30 +00:00
elif [[ $prev == -p ]]; then
COMPREPLY=( $(compgen -f -d -- "$cur") )
elif [[ $prev == -P ]]; then
local plugins=$(echo $NNN_PLUG | awk -F: -v RS=\; '{print $1}')
COMPREPLY=( $(compgen -W "$plugins" -- "$cur") )
elif [[ $prev == -s ]]; then
local sessions_dir=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/sessions
COMPREPLY=( $(cd "$sessions_dir" && compgen -f -d -- "$cur") )
elif [[ $prev == -t ]]; then
return 1
2020-03-17 21:05:05 +00:00
elif [[ $prev == -T ]]; then
local keys=$(echo "a d e r s t v" | awk -v RS=' ' '{print $0}')
COMPREPLY=( $(compgen -W "$keys" -- "$cur") )
2019-07-08 18:05:30 +00:00
elif [[ $cur == -* ]]; then
COMPREPLY=( $(compgen -W "${opts[*]}" -- "$cur") )
else
COMPREPLY=( $(compgen -f -d -- "$cur") )
fi
2017-09-02 06:53:19 +00:00
}
2019-07-08 18:05:30 +00:00
complete -o filenames -F _nnn nnn