| 1 | # This is terribly complicated |
| 2 | # It's because: |
| 3 | # 1. bun run has to have dynamic completions |
| 4 | # 2. there are global options |
| 5 | # 3. bun {install add remove} gets special options |
| 6 | # 4. I don't know how to write fish completions well |
| 7 | # Contributions very welcome!! |
| 8 | |
| 9 | function __fish__get_bun_bins |
| 10 | string split ' ' (bun getcompletes b) |
| 11 | end |
| 12 | |
| 13 | function __fish__get_bun_scripts |
| 14 | set -lx SHELL bash |
| 15 | set -lx MAX_DESCRIPTION_LEN 40 |
| 16 | string trim (string split '\n' (string split '\t' (bun getcompletes z))) |
| 17 | end |
| 18 | |
| 19 | function __fish__get_bun_packages |
| 20 | if test (commandline -ct) != "" |
| 21 | set -lx SHELL fish |
| 22 | string split ' ' (bun getcompletes a (commandline -ct)) |
| 23 | end |
| 24 | end |
| 25 | |
| 26 | function __history_completions |
| 27 | set -l tokens (commandline --current-process --tokenize) |
| 28 | history --prefix (commandline) | string replace -r \^$tokens[1]\\s\* "" | string replace -r \^$tokens[2]\\s\* "" | string split ' ' |
| 29 | end |
| 30 | |
| 31 | function __fish__get_bun_bun_js_files |
| 32 | string split ' ' (bun getcompletes j) |
| 33 | end |
| 34 | |
| 35 | set -l bun_install_boolean_flags yarn production optional development no-save dry-run force no-cache silent verbose global |
| 36 | set -l bun_install_boolean_flags_descriptions "Write a yarn.lock file (yarn v1)" "Don't install devDependencies" "Add dependency to optionalDependencies" "Add dependency to devDependencies" "Don't install devDependencies" "Don't install anything" "Always request the latest versions from the registry & reinstall all dependencies" "Ignore manifest cache entirely" "Don't output anything" "Excessively verbose logging" "Use global folder" |
| 37 | |
| 38 | set -l bun_builtin_cmds_without_run dev create help bun upgrade discord install remove add init pm x |
| 39 | set -l bun_builtin_cmds_accepting_flags create help bun upgrade discord run init link unlink pm x |
| 40 | |
| 41 | function __bun_complete_bins_scripts --inherit-variable bun_builtin_cmds_without_run -d "Emit bun completions for bins and scripts" |
| 42 | # Do nothing if we already have a builtin subcommand, |
| 43 | # or any subcommand other than "run". |
| 44 | if __fish_seen_subcommand_from $bun_builtin_cmds_without_run |
| 45 | or not __fish_use_subcommand && not __fish_seen_subcommand_from run |
| 46 | return |
| 47 | end |
| 48 | # Do we already have a bin or script subcommand? |
| 49 | set -l bins (__fish__get_bun_bins) |
| 50 | if __fish_seen_subcommand_from $bins |
| 51 | return |
| 52 | end |
| 53 | # Scripts have descriptions appended with a tab separator. |
| 54 | # Strip off descriptions for the purposes of subcommand testing. |
| 55 | set -l scripts (__fish__get_bun_scripts) |
| 56 | if __fish_seen_subcommand_from (string split \t -f 1 -- $scripts) |
| 57 | return |
| 58 | end |
| 59 | # Emit scripts. |
| 60 | for script in $scripts |
| 61 | echo $script |
| 62 | end |
| 63 | # Emit binaries and JS files (but only if we're doing `bun run`). |
| 64 | if __fish_seen_subcommand_from run |
| 65 | for bin in $bins |
| 66 | echo "$bin"\t"package bin" |
| 67 | end |
| 68 | for file in (__fish__get_bun_bun_js_files) |
| 69 | echo "$file"\t"Bun.js" |
| 70 | end |
| 71 | end |
| 72 | end |
| 73 | |
| 74 | |
| 75 | # Clear existing completions |
| 76 | complete -e -c bun |
| 77 | |
| 78 | # Dynamically emit scripts and binaries |
| 79 | complete -c bun -f -a "(__bun_complete_bins_scripts)" |
| 80 | |
| 81 | # Complete flags if we have no subcommand or a flag-friendly one. |
| 82 | set -l flag_applies "__fish_use_subcommand; or __fish_seen_subcommand_from $bun_builtin_cmds_accepting_flags" |
| 83 | complete -c bun \ |
| 84 | -n $flag_applies --no-files -s 'u' -l 'origin' -r -d 'Server URL. Rewrites import paths' |
| 85 | complete -c bun \ |
| 86 | -n $flag_applies --no-files -s 'p' -l 'port' -r -d 'Port number to start server from' |
| 87 | complete -c bun \ |
| 88 | -n $flag_applies --no-files -s 'd' -l 'define' -r -d 'Substitute K:V while parsing, e.g. --define process.env.NODE_ENV:\"development\"' |
| 89 | complete -c bun \ |
| 90 | -n $flag_applies --no-files -s 'e' -l 'external' -r -d 'Exclude module from transpilation (can use * wildcards). ex: -e react' |
| 91 | complete -c bun \ |
| 92 | -n $flag_applies --no-files -l 'use' -r -d 'Use a framework (ex: next)' |
| 93 | complete -c bun \ |
| 94 | -n $flag_applies --no-files -l 'hot' -r -d 'Enable hot reloading in Bun\'s JavaScript runtime' |
| 95 | |
| 96 | # Complete dev and create as first subcommand. |
| 97 | complete -c bun \ |
| 98 | -n "__fish_use_subcommand" -a 'dev' -d 'Start dev server' |
| 99 | complete -c bun \ |
| 100 | -n "__fish_use_subcommand" -a 'create' -f -d 'Create a new project from a template' |
| 101 | |
| 102 | # Complete "next" and "react" if we've seen "create". |
| 103 | complete -c bun \ |
| 104 | -n "__fish_seen_subcommand_from create" -a 'next' -d 'new Next.js project' |
| 105 | |
| 106 | complete -c bun \ |
| 107 | -n "__fish_seen_subcommand_from create" -a 'react' -d 'new React project' |
| 108 | |
| 109 | # Complete "upgrade" as first subcommand. |
| 110 | complete -c bun \ |
| 111 | -n "__fish_use_subcommand" -a 'upgrade' -d 'Upgrade bun to the latest version' -x |
| 112 | # Complete "-h/--help" unconditionally. |
| 113 | complete -c bun \ |
| 114 | -s "h" -l "help" -d 'See all commands and flags' -x |
| 115 | |
| 116 | # Complete "-v/--version" if we have no subcommand. |
| 117 | complete -c bun \ |
| 118 | -n "not __fish_use_subcommand" -l "version" -s "v" -d 'Bun\'s version' -x |
| 119 | |
| 120 | # Complete additional subcommands. |
| 121 | complete -c bun \ |
| 122 | -n "__fish_use_subcommand" -a 'discord' -d 'Open bun\'s Discord server' -x |
| 123 | |
| 124 | |
| 125 | complete -c bun \ |
| 126 | -n "__fish_use_subcommand" -a 'bun' -d 'Generate a new bundle' |
| 127 | |
| 128 | |
| 129 | complete -c bun \ |
| 130 | -n "__fish_seen_subcommand_from bun" -F -d 'Bundle this' |
| 131 | |
| 132 | complete -c bun \ |
| 133 | -n "__fish_seen_subcommand_from create; and __fish_seen_subcommand_from react next" -F -d "Create in directory" |
| 134 | |
| 135 | |
| 136 | complete -c bun \ |
| 137 | -n "__fish_use_subcommand" -a 'init' -F -d 'Start an empty Bun project' |
| 138 | |
| 139 | complete -c bun \ |
| 140 | -n "__fish_use_subcommand" -a 'install' -f -d 'Install packages from package.json' |
| 141 | |
| 142 | complete -c bun \ |
| 143 | -n "__fish_use_subcommand" -a 'add' -F -d 'Add a package to package.json' |
| 144 | |
| 145 | complete -c bun \ |
| 146 | -n "__fish_use_subcommand" -a 'remove' -F -d 'Remove a package from package.json' |
| 147 | |
| 148 | |
| 149 | for i in (seq (count $bun_install_boolean_flags)) |
| 150 | complete -c bun \ |
| 151 | -n "__fish_seen_subcommand_from install add remove" -l "$bun_install_boolean_flags[$i]" -d "$bun_install_boolean_flags_descriptions[$i]" |
| 152 | end |
| 153 | |
| 154 | complete -c bun \ |
| 155 | -n "__fish_seen_subcommand_from install add remove" -l 'cwd' -d 'Change working directory' |
| 156 | |
| 157 | complete -c bun \ |
| 158 | -n "__fish_seen_subcommand_from install add remove" -l 'cache-dir' -d 'Choose a cache directory (default: $HOME/.bun/install/cache)' |
| 159 | |
| 160 | complete -c bun \ |
| 161 | -n "__fish_seen_subcommand_from add" -d 'Popular' -a '(__fish__get_bun_packages)' |
| 162 | |
| 163 | complete -c bun \ |
| 164 | -n "__fish_seen_subcommand_from add" -d 'History' -a '(__history_completions)' |
| 165 | |
| 166 | complete -c bun \ |
| 167 | -n "__fish_seen_subcommand_from pm; and not __fish_seen_subcommand_from (__fish__get_bun_bins) (__fish__get_bun_scripts) cache;" -a 'bin ls cache hash hash-print hash-string' -f |
| 168 | |
| 169 | complete -c bun \ |
| 170 | -n "__fish_seen_subcommand_from pm; and __fish_seen_subcommand_from cache; and not __fish_seen_subcommand_from (__fish__get_bun_bins) (__fish__get_bun_scripts);" -a 'rm' -f |
| 171 | |
| 172 | # Add built-in subcommands with descriptions. |
| 173 | complete -c bun -n "__fish_use_subcommand" -a "create" -f -d "Create a new project from a template" |
| 174 | complete -c bun -n "__fish_use_subcommand" -a "build bun" --require-parameter -F -d "Transpile and bundle one or more files" |
| 175 | complete -c bun -n "__fish_use_subcommand" -a "upgrade" -d "Upgrade Bun" |
| 176 | complete -c bun -n "__fish_use_subcommand" -a "run" -d "Run a script or package binary" |
| 177 | complete -c bun -n "__fish_use_subcommand" -a "install" -d "Install dependencies from package.json" -f |
| 178 | complete -c bun -n "__fish_use_subcommand" -a "remove" -d "Remove a dependency from package.json" -f |
| 179 | complete -c bun -n "__fish_use_subcommand" -a "add" -d "Add a dependency to package.json" -f |
| 180 | complete -c bun -n "__fish_use_subcommand" -a "init" -d "Initialize a Bun project in this directory" -f |
| 181 | complete -c bun -n "__fish_use_subcommand" -a "link" -d "Register or link a local npm package" -f |
| 182 | complete -c bun -n "__fish_use_subcommand" -a "link" -d "Unregister a local npm package" -f |
| 183 | complete -c bun -n "__fish_use_subcommand" -a "pm" -d "Additional package management utilities" -f |
| 184 | complete -c bun -n "__fish_use_subcommand" -a "x" -d "Execute a package binary, installing if needed" -f |