# NPM (https://npmjs.org) completions for Fish shell # __fish_npm_needs_* and __fish_npm_using_* taken from: # https://stackoverflow.com/questions/16657803/creating-autocomplete-script-with-sub-commands # see also Fish's large set of completions for examples: # https://github.com/fish-shell/fish-shell/tree/master/share/completions function __fish_npm_needs_command set cmd (commandline -opc) if [ (count $cmd) -eq 1 ] return 0 end return 1 end function __fish_npm_using_command set cmd (commandline -opc) if [ (count $cmd) -gt 1 ] if [ $argv[1] = $cmd[2] ] return 0 end end return 1 end function __fish_npm_needs_option switch (commandline -ct) case "-*" return 0 end return 1 end function __fish_complete_npm --description "Complete the commandline using npm's 'completion' tool" # Note that this function will generate undescribed completion options, and current fish # will sometimes pick these over versions with descriptions. # However, this seems worth it because it means automatically getting _some_ completions if npm updates. # Defining an npm alias that automatically calls nvm if necessary is a popular convenience measure. # Because that is a function, these local variables won't be inherited and the completion would fail # with weird output on stdout (!). But before the function is called, no npm command is defined, # so calling the command would fail. # So we'll only try if we have an npm command. if command -sq npm # npm completion is bash-centric, so we need to translate fish's "commandline" stuff to bash's $COMP_* stuff # COMP_LINE is an array with the words in the commandline set -lx COMP_LINE (commandline -o) # COMP_CWORD is the index of the current word in COMP_LINE # bash starts arrays with 0, so subtract 1 set -l x (count $COMP_LINE) set -lx COMP_CWORD (math x - 1) # COMP_POINT is the index of point/cursor when the commandline is viewed as a string set -lx COMP_POINT (commandline -C) # If the cursor is after the last word, the empty token will disappear in the expansion # Readd it if test (commandline -ct) = "" set COMP_CWORD (math COMP_CWORD + 1) set COMP_LINE $COMP_LINE "" end command npm completion -- $COMP_LINE ^/dev/null end end # use npm completion for most of the things, # except options completion (because it sucks at it) # and run-script completion (reading package.json is faster). # see: https://github.com/npm/npm/issues/9524 # and: https://github.com/fish-shell/fish-shell/pull/2366 complete -f -c npm -n 'not __fish_npm_needs_option; and not __fish_npm_using_command run; and not __fish_npm_using_command run-script' -a "(__fish_complete_npm)" # list available npm scripts and their parial content function __fish_parse_npm_run_completions while read -l name set -l trim 20 read -l value set value (string sub -l $trim -- $value) printf "%s\t%s\n" $name $value end end function __fish_npm_run # Like above, only try to call npm if there's a command by that name to facilitate aliases that call nvm. if command -sq jq; and test -e package.json jq -r '.scripts | to_entries[] | .key,.value'