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

53 lines
1.0 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=(
2019-08-30 15:25:23 +00:00
-a
-A
2018-12-09 03:06:00 +00:00
-b
2019-10-06 13:27:15 +00:00
-c
2019-03-11 14:54:44 +00:00
-d
2019-11-30 12:44:39 +00:00
-E
2019-12-14 13:30:09 +00:00
-g
2019-08-16 17:45:29 +00:00
-H
2019-10-11 15:29:22 +00:00
-K
2019-07-14 17:30:14 +00:00
-n
-o
2018-12-09 03:06:00 +00:00
-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
-v
-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 == -p ]]; then
COMPREPLY=( $(compgen -f -d -- "$cur") )
elif [[ $prev == -s ]]; then
local sessions_dir=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/sessions
COMPREPLY=( $(cd "$sessions_dir" && compgen -f -d -- "$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