this repo has no description
1
fork

Configure Feed

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

Remove custom fish completions

-99
-90
fish/completions/cargo.fish
··· 1 - # Tab completion for cargo (https://github.com/rust-lang/cargo). 2 - complete -e -c cargo 3 - 4 - complete -c cargo -s h -l help 5 - complete -c cargo -s V -l version -d 'Print version info and exit' 6 - complete -c cargo -l list -d 'List installed commands' 7 - complete -c cargo -s v -l verbose -d 'Use verbose output' 8 - complete -c cargo -s q -l quiet -d 'No output printed to stdout' 9 - 10 - set __fish_cargo_subcommands (cargo --list | tail -n +2 | tr -d " ") 11 - 12 - complete -c cargo -f -c cargo -n '__fish_use_subcommand' -a '$__fish_cargo_subcommands' 13 - complete -c cargo -x -c cargo -n '__fish_seen_subcommand_from help' -a '$__fish_cargo_subcommands' 14 - 15 - for x in bench build clean doc fetch generate-lockfile \ 16 - locate-project package pkgid publish \ 17 - read-manifest run rustc test update \ 18 - verify-project; 19 - complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l manifest-path -d 'path to the manifest to compile' 20 - end 21 - 22 - for x in bench build clean doc rustc test update; 23 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s p -l spec -d 'Package to build' 24 - end 25 - 26 - for x in bench build clean doc run rustc test; 27 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l target -d 'Build for the target triple' 28 - end 29 - 30 - for x in bench build rustc test; 31 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bench -d 'Only the specified benchmark' 32 - complete -c cargo -n "__fish_seen_subcommand_from $x" -l lib -d 'Only this package\'s library' 33 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l test -d 'Only the specified test' 34 - end 35 - 36 - for x in bench build run rustc test; 37 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bin -d 'Only the specified binary' 38 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l example -d 'Only the specified example' 39 - end 40 - 41 - for x in build run rustc test; 42 - complete -c cargo -n "__fish_seen_subcommand_from $x" -l release -d 'Build artifacts in release mode, with optimizations' 43 - end 44 - 45 - for x in bench test; 46 - complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-run -d 'Compile but do not run' 47 - end 48 - 49 - for x in bench build doc run rustc test; 50 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s j -l jobs -d 'Number of jobs to run in parallel' 51 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l features -d 'Space-separated list of features to also build' 52 - complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-default-features -d 'Do not build the `default` feature' 53 - end 54 - 55 - complete -c cargo -n '__fish_seen_subcommand_from doc' -l no-deps -d 'Don\'t build documentation for dependencies' 56 - 57 - complete -c cargo -x -n '__fish_seen_subcommand_from new' -l vcs -a 'none hg git' -d 'Specify a vcs to use' 58 - complete -c cargo -x -n '__fish_seen_subcommand_from new' -l name 59 - 60 - # This bin does not take any arguments which is why it is not defined above. 61 - complete -c cargo -n '__fish_seen_subcommand_from new' -l bin 62 - 63 - complete -c cargo -x -n '__fish_seen_subcommand_from git-checkout' -l url 64 - complete -c cargo -x -n '__fish_seen_subcommand_from git-checkout' -l reference 65 - 66 - for x in login publish search; 67 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l host -d 'The host to submit the request to' 68 - end 69 - 70 - complete -c cargo -n '__fish_seen_subcommand_from doc' -l open -d 'Opens the docs in a browser after the operation' 71 - 72 - complete -c cargo -r -n '__fish_seen_subcommand_from owner' -s a -l add -d 'Login of a user to add as an owner' 73 - complete -c cargo -r -n '__fish_seen_subcommand_from owner' -s r -l remove -d 'Login of a user to remove as an owner' 74 - 75 - for x in owner yank; 76 - complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l index -d 'Registry index to use' 77 - end 78 - 79 - for x in owner publish yank; 80 - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l token -d 'API token to use when authenticating' 81 - end 82 - 83 - complete -c cargo -n '__fish_seen_subcommand_from package' -l no-verify -d 'Don\'t verify the contents by building them' 84 - complete -c cargo -n '__fish_seen_subcommand_from package' -l no-metadata -d 'Ignore warnings about a lack of human-usable metadata' 85 - 86 - complete -c cargo -n '__fish_seen_subcommand_from update' -l aggressive -d 'Force updating all dependencies of <name> as well' 87 - complete -c cargo -x -n '__fish_seen_subcommand_from update' -l precise -d 'Update a single dependency to exactly PRECISE' 88 - 89 - complete -c cargo -x -n '__fish_seen_subcommand_from yank' -l vers -d 'The version to yank or un-yank' 90 - complete -c cargo -n '__fish_seen_subcommand_from yank' -l undo -d 'Undo a yank, putting a version back into the index'
-8
fish/completions/fin.fish
··· 1 - complete -xc fin -s h -l help -d "Show usage help" 2 - complete -xc fin -s q -l quiet -d "Enable quiet mode" 3 - complete -xc fin -s v -l version -d "Show version information" 4 - complete -xc fin -n "__fish_use_subcommand" -a install -d "Install plugins / i" 5 - complete -xc fin -n "__fish_use_subcommand" -a update -d "Update fin and plugins / u" 6 - complete -xc fin -n "__fish_use_subcommand" -a rm -d "Remove plugins / r" 7 - complete -xc fin -n "__fish_use_subcommand" -a ls -d "List plugins / l" 8 - complete -xc fin -n "__fish_use_subcommand" -a help -d "Show help / h"
-1
fish/completions/work.fish
··· 1 - complete -x -c work -a '(find "$WORKSPACE" -maxdepth 3 -type d -and -name .git -prune -print | sed -e "s:$WORKSPACE/*::" -e "s:/\.git::")'