My build of nnn with minor changes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #
- # Rudimentary Bash completion definition for nnn.
- #
- # Author:
- # Arun Prakash Jana <engineerarun@gmail.com>
- #
-
- _nnn ()
- {
- COMPREPLY=()
- local IFS=$'\n'
- local cur=$2 prev=$3
- local -a opts
- opts=(
- -a
- -A
- -b
- -c
- -C
- -d
- -D
- -e
- -E
- -f
- -F
- -g
- -H
- -J
- -K
- -l
- -n
- -o
- -p
- -P
- -Q
- -r
- -R
- -s
- -S
- -t
- -T
- -U
- -V
- -w
- -x
- -h
- )
- 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
- 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
- elif [[ $prev == -T ]]; then
- local keys=$(echo "a d e r s t v" | awk -v RS=' ' '{print $0}')
- COMPREPLY=( $(compgen -W "$keys" -- "$cur") )
- elif [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W "${opts[*]}" -- "$cur") )
- else
- COMPREPLY=( $(compgen -f -d -- "$cur") )
- fi
- }
-
- complete -o filenames -F _nnn nnn
|