diff options
Diffstat (limited to 'misc/auto-completion/bash')
-rw-r--r-- | misc/auto-completion/bash/nnn-completion.bash | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/misc/auto-completion/bash/nnn-completion.bash b/misc/auto-completion/bash/nnn-completion.bash index 22180e5..638df49 100644 --- a/misc/auto-completion/bash/nnn-completion.bash +++ b/misc/auto-completion/bash/nnn-completion.bash @@ -5,7 +5,8 @@ # Arun Prakash Jana <engineerarun@gmail.com> # -_nnn () { +_nnn () +{ COMPREPLY=() local IFS=$' \n' local cur=$2 prev=$3 @@ -36,7 +37,7 @@ _nnn () { COMPREPLY=( $(compgen -f -d -- "$cur") ) elif [[ $prev == -e ]]; then local sessions_dir=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/sessions - COMPREPLY=( $(compgen -W "$(ls $sessions_dir)" -- "$cur") ) + COMPREPLY=( $(compgen -W "$(ls "$sessions_dir")" -- "$cur") ) elif [[ $cur == -* ]]; then COMPREPLY=( $(compgen -W "${opts[*]}" -- "$cur") ) else |