My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

40 lignes
792 B

  1. #
  2. # Rudimentary Bash completion definition for nnn.
  3. #
  4. # Author:
  5. # Arun Prakash Jana <engineerarun@gmail.com>
  6. #
  7. _nnn () {
  8. COMPREPLY=()
  9. local IFS=$' \n'
  10. local cur=$2 prev=$3
  11. local -a opts
  12. opts=(
  13. -b
  14. -d
  15. -e
  16. -h
  17. -i
  18. -l
  19. -n
  20. -p
  21. -s
  22. -S
  23. -v
  24. -w
  25. )
  26. if [[ $prev == -b ]]; then
  27. local bookmarks=$(echo $NNN_BMS | awk -F: -v RS=\; '{print $1}')
  28. COMPREPLY=( $(compgen -W "$bookmarks" -- "$cur") )
  29. elif [[ $prev == -p ]]; then
  30. COMPREPLY=( $(compgen -f -d -- "$cur") )
  31. elif [[ $cur == -* ]]; then
  32. COMPREPLY=( $(compgen -W "${opts[*]}" -- "$cur") )
  33. else
  34. COMPREPLY=( $(compgen -f -d -- "$cur") )
  35. fi
  36. }
  37. complete -o filenames -F _nnn nnn