i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add pnpm completions

+23
+23
fish/.config/fish/completions/pnpm.fish
··· 1 + ###-begin-pnpm-completion-### 2 + function _pnpm_completion 3 + set cmd (commandline -o) 4 + set cursor (commandline -C) 5 + set words (count $cmd) 6 + 7 + set completions (eval env DEBUG=\"" \"" COMP_CWORD=\""$words\"" COMP_LINE=\""$cmd \"" COMP_POINT=\""$cursor\"" SHELL=fish pnpm completion-server -- $cmd) 8 + 9 + if [ "$completions" = "__tabtab_complete_files__" ] 10 + set -l matches (commandline -ct)* 11 + if [ -n "$matches" ] 12 + __fish_complete_path (commandline -ct) 13 + end 14 + else 15 + for completion in $completions 16 + echo -e $completion 17 + end 18 + end 19 + end 20 + 21 + complete -f -d 'pnpm' -c pnpm -a "(_pnpm_completion)" 22 + ###-end-pnpm-completion-### 23 +