this repo has no description
1
fork

Configure Feed

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

Remove old completions definitions

+1 -185
-20
fish/.config/fish/completions/ptags.fish
··· 1 - complete -c ptags -n "__fish_use_subcommand" -s t -l thread -d 'Number of threads' 2 - complete -c ptags -n "__fish_use_subcommand" -s f -l file -d 'Output filename ( filename \'-\' means output to stdout )' 3 - complete -c ptags -n "__fish_use_subcommand" -l bin-ctags -d 'Path to ctags binary' 4 - complete -c ptags -n "__fish_use_subcommand" -l bin-git -d 'Path to git binary' 5 - complete -c ptags -n "__fish_use_subcommand" -s c -l opt-ctags -d 'Options passed to ctags' 6 - complete -c ptags -n "__fish_use_subcommand" -s g -l opt-git -d 'Options passed to git' 7 - complete -c ptags -n "__fish_use_subcommand" -l opt-git-lfs -d 'Options passed to git-lfs' 8 - complete -c ptags -n "__fish_use_subcommand" -s e -l exclude -d 'Glob pattern of exclude file ( ex. --exclude \'*.rs\' )' 9 - complete -c ptags -n "__fish_use_subcommand" -l completion -d 'Generate shell completion file' -r -f -a "bash fish zsh powershell" 10 - complete -c ptags -n "__fish_use_subcommand" -s s -l stat -d 'Show statistics' 11 - complete -c ptags -n "__fish_use_subcommand" -s v -l verbose -d 'Verbose mode' 12 - complete -c ptags -n "__fish_use_subcommand" -l exclude-lfs -d 'Exclude git-lfs tracked files' 13 - complete -c ptags -n "__fish_use_subcommand" -l include-untracked -d 'Include untracked files' 14 - complete -c ptags -n "__fish_use_subcommand" -l include-ignored -d 'Include ignored files' 15 - complete -c ptags -n "__fish_use_subcommand" -l include-submodule -d 'Include submodule files' 16 - complete -c ptags -n "__fish_use_subcommand" -l validate-utf8 -d 'Validate UTF8 sequence of tag file' 17 - complete -c ptags -n "__fish_use_subcommand" -l unsorted -d 'Disable tags sort' 18 - complete -c ptags -n "__fish_use_subcommand" -l config -d 'Generate configuration sample file' 19 - complete -c ptags -n "__fish_use_subcommand" -s h -l help -d 'Prints help information' 20 - complete -c ptags -n "__fish_use_subcommand" -s V -l version -d 'Prints version information'
-164
fish/.config/fish/completions/rustup.fish
··· 1 - complete -c rustup -n "__fish_use_subcommand" -s v -l verbose -d 'Enable verbose output' 2 - complete -c rustup -n "__fish_use_subcommand" -s h -l help -d 'Prints help information' 3 - complete -c rustup -n "__fish_use_subcommand" -s V -l version -d 'Prints version information' 4 - complete -c rustup -n "__fish_use_subcommand" -f -a "show" -d 'Show the active and installed toolchains' 5 - complete -c rustup -n "__fish_use_subcommand" -f -a "install" -d 'Update Rust toolchains' 6 - complete -c rustup -n "__fish_use_subcommand" -f -a "uninstall" -d 'Uninstall Rust toolchains' 7 - complete -c rustup -n "__fish_use_subcommand" -f -a "update" -d 'Update Rust toolchains and rustup' 8 - complete -c rustup -n "__fish_use_subcommand" -f -a "default" -d 'Set the default toolchain' 9 - complete -c rustup -n "__fish_use_subcommand" -f -a "toolchain" -d 'Modify or query the installed toolchains' 10 - complete -c rustup -n "__fish_use_subcommand" -f -a "target" -d 'Modify a toolchain\'s supported targets' 11 - complete -c rustup -n "__fish_use_subcommand" -f -a "component" -d 'Modify a toolchain\'s installed components' 12 - complete -c rustup -n "__fish_use_subcommand" -f -a "override" -d 'Modify directory toolchain overrides' 13 - complete -c rustup -n "__fish_use_subcommand" -f -a "run" -d 'Run a command with an environment configured for a given toolchain' 14 - complete -c rustup -n "__fish_use_subcommand" -f -a "which" -d 'Display which binary will be run for a given command' 15 - complete -c rustup -n "__fish_use_subcommand" -f -a "doc" -d 'Open the documentation for the current toolchain' 16 - complete -c rustup -n "__fish_use_subcommand" -f -a "man" -d 'View the man page for a given command' 17 - complete -c rustup -n "__fish_use_subcommand" -f -a "self" -d 'Modify the rustup installation' 18 - complete -c rustup -n "__fish_use_subcommand" -f -a "telemetry" -d 'rustup telemetry commands' 19 - complete -c rustup -n "__fish_use_subcommand" -f -a "set" -d 'Alter rustup settings' 20 - complete -c rustup -n "__fish_use_subcommand" -f -a "completions" -d 'Generate completion scripts for your shell' 21 - complete -c rustup -n "__fish_use_subcommand" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 22 - complete -c rustup -n "__fish_seen_subcommand_from show" -s h -l help -d 'Prints help information' 23 - complete -c rustup -n "__fish_seen_subcommand_from show" -s V -l version -d 'Prints version information' 24 - complete -c rustup -n "__fish_seen_subcommand_from show" -f -a "active-toolchain" -d 'Show the active toolchain' 25 - complete -c rustup -n "__fish_seen_subcommand_from show" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 26 - complete -c rustup -n "__fish_seen_subcommand_from active-toolchain" -s h -l help -d 'Prints help information' 27 - complete -c rustup -n "__fish_seen_subcommand_from active-toolchain" -s V -l version -d 'Prints version information' 28 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 29 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 30 - complete -c rustup -n "__fish_seen_subcommand_from install" -s h -l help -d 'Prints help information' 31 - complete -c rustup -n "__fish_seen_subcommand_from install" -s V -l version -d 'Prints version information' 32 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s h -l help -d 'Prints help information' 33 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s V -l version -d 'Prints version information' 34 - complete -c rustup -n "__fish_seen_subcommand_from update" -l no-self-update -d 'Don\'t perform self update when running the `rustup` command' 35 - complete -c rustup -n "__fish_seen_subcommand_from update" -l force -d 'Force an update, even if some components are missing' 36 - complete -c rustup -n "__fish_seen_subcommand_from update" -s h -l help -d 'Prints help information' 37 - complete -c rustup -n "__fish_seen_subcommand_from update" -s V -l version -d 'Prints version information' 38 - complete -c rustup -n "__fish_seen_subcommand_from default" -s h -l help -d 'Prints help information' 39 - complete -c rustup -n "__fish_seen_subcommand_from default" -s V -l version -d 'Prints version information' 40 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -s h -l help -d 'Prints help information' 41 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -s V -l version -d 'Prints version information' 42 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -f -a "list" -d 'List installed toolchains' 43 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -f -a "install" -d 'Install or update a given toolchain' 44 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -f -a "uninstall" -d 'Uninstall a toolchain' 45 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -f -a "link" -d 'Create a custom toolchain by symlinking to a directory' 46 - complete -c rustup -n "__fish_seen_subcommand_from toolchain" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 47 - complete -c rustup -n "__fish_seen_subcommand_from list" -s h -l help -d 'Prints help information' 48 - complete -c rustup -n "__fish_seen_subcommand_from list" -s V -l version -d 'Prints version information' 49 - complete -c rustup -n "__fish_seen_subcommand_from install" -s h -l help -d 'Prints help information' 50 - complete -c rustup -n "__fish_seen_subcommand_from install" -s V -l version -d 'Prints version information' 51 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s h -l help -d 'Prints help information' 52 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s V -l version -d 'Prints version information' 53 - complete -c rustup -n "__fish_seen_subcommand_from link" -s h -l help -d 'Prints help information' 54 - complete -c rustup -n "__fish_seen_subcommand_from link" -s V -l version -d 'Prints version information' 55 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 56 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 57 - complete -c rustup -n "__fish_seen_subcommand_from target" -s h -l help -d 'Prints help information' 58 - complete -c rustup -n "__fish_seen_subcommand_from target" -s V -l version -d 'Prints version information' 59 - complete -c rustup -n "__fish_seen_subcommand_from target" -f -a "list" -d 'List installed and available targets' 60 - complete -c rustup -n "__fish_seen_subcommand_from target" -f -a "add" -d 'Add a target to a Rust toolchain' 61 - complete -c rustup -n "__fish_seen_subcommand_from target" -f -a "remove" -d 'Remove a target from a Rust toolchain' 62 - complete -c rustup -n "__fish_seen_subcommand_from target" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 63 - complete -c rustup -n "__fish_seen_subcommand_from list" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 64 - complete -c rustup -n "__fish_seen_subcommand_from list" -s h -l help -d 'Prints help information' 65 - complete -c rustup -n "__fish_seen_subcommand_from list" -s V -l version -d 'Prints version information' 66 - complete -c rustup -n "__fish_seen_subcommand_from add" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 67 - complete -c rustup -n "__fish_seen_subcommand_from add" -s h -l help -d 'Prints help information' 68 - complete -c rustup -n "__fish_seen_subcommand_from add" -s V -l version -d 'Prints version information' 69 - complete -c rustup -n "__fish_seen_subcommand_from remove" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 70 - complete -c rustup -n "__fish_seen_subcommand_from remove" -s h -l help -d 'Prints help information' 71 - complete -c rustup -n "__fish_seen_subcommand_from remove" -s V -l version -d 'Prints version information' 72 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 73 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 74 - complete -c rustup -n "__fish_seen_subcommand_from component" -s h -l help -d 'Prints help information' 75 - complete -c rustup -n "__fish_seen_subcommand_from component" -s V -l version -d 'Prints version information' 76 - complete -c rustup -n "__fish_seen_subcommand_from component" -f -a "list" -d 'List installed and available components' 77 - complete -c rustup -n "__fish_seen_subcommand_from component" -f -a "add" -d 'Add a component to a Rust toolchain' 78 - complete -c rustup -n "__fish_seen_subcommand_from component" -f -a "remove" -d 'Remove a component from a Rust toolchain' 79 - complete -c rustup -n "__fish_seen_subcommand_from component" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 80 - complete -c rustup -n "__fish_seen_subcommand_from list" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 81 - complete -c rustup -n "__fish_seen_subcommand_from list" -s h -l help -d 'Prints help information' 82 - complete -c rustup -n "__fish_seen_subcommand_from list" -s V -l version -d 'Prints version information' 83 - complete -c rustup -n "__fish_seen_subcommand_from add" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 84 - complete -c rustup -n "__fish_seen_subcommand_from add" -l target 85 - complete -c rustup -n "__fish_seen_subcommand_from add" -s h -l help -d 'Prints help information' 86 - complete -c rustup -n "__fish_seen_subcommand_from add" -s V -l version -d 'Prints version information' 87 - complete -c rustup -n "__fish_seen_subcommand_from remove" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 88 - complete -c rustup -n "__fish_seen_subcommand_from remove" -l target 89 - complete -c rustup -n "__fish_seen_subcommand_from remove" -s h -l help -d 'Prints help information' 90 - complete -c rustup -n "__fish_seen_subcommand_from remove" -s V -l version -d 'Prints version information' 91 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 92 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 93 - complete -c rustup -n "__fish_seen_subcommand_from override" -s h -l help -d 'Prints help information' 94 - complete -c rustup -n "__fish_seen_subcommand_from override" -s V -l version -d 'Prints version information' 95 - complete -c rustup -n "__fish_seen_subcommand_from override" -f -a "list" -d 'List directory toolchain overrides' 96 - complete -c rustup -n "__fish_seen_subcommand_from override" -f -a "set" -d 'Set the override toolchain for a directory' 97 - complete -c rustup -n "__fish_seen_subcommand_from override" -f -a "unset" -d 'Remove the override toolchain for a directory' 98 - complete -c rustup -n "__fish_seen_subcommand_from override" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 99 - complete -c rustup -n "__fish_seen_subcommand_from list" -s h -l help -d 'Prints help information' 100 - complete -c rustup -n "__fish_seen_subcommand_from list" -s V -l version -d 'Prints version information' 101 - complete -c rustup -n "__fish_seen_subcommand_from set" -s h -l help -d 'Prints help information' 102 - complete -c rustup -n "__fish_seen_subcommand_from set" -s V -l version -d 'Prints version information' 103 - complete -c rustup -n "__fish_seen_subcommand_from unset" -l path -d 'Path to the directory' 104 - complete -c rustup -n "__fish_seen_subcommand_from unset" -l nonexistent -d 'Remove override toolchain for all nonexistent directories' 105 - complete -c rustup -n "__fish_seen_subcommand_from unset" -s h -l help -d 'Prints help information' 106 - complete -c rustup -n "__fish_seen_subcommand_from unset" -s V -l version -d 'Prints version information' 107 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 108 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 109 - complete -c rustup -n "__fish_seen_subcommand_from run" -l install -d 'Install the requested toolchain if needed' 110 - complete -c rustup -n "__fish_seen_subcommand_from run" -s h -l help -d 'Prints help information' 111 - complete -c rustup -n "__fish_seen_subcommand_from run" -s V -l version -d 'Prints version information' 112 - complete -c rustup -n "__fish_seen_subcommand_from which" -s h -l help -d 'Prints help information' 113 - complete -c rustup -n "__fish_seen_subcommand_from which" -s V -l version -d 'Prints version information' 114 - complete -c rustup -n "__fish_seen_subcommand_from doc" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 115 - complete -c rustup -n "__fish_seen_subcommand_from doc" -l path -d 'Only print the path to the documentation' 116 - complete -c rustup -n "__fish_seen_subcommand_from doc" -l book -d 'The Rust Programming Language book' 117 - complete -c rustup -n "__fish_seen_subcommand_from doc" -l std -d 'Standard library API documentation' 118 - complete -c rustup -n "__fish_seen_subcommand_from doc" -l reference -d 'The Rust Reference' 119 - complete -c rustup -n "__fish_seen_subcommand_from doc" -s h -l help -d 'Prints help information' 120 - complete -c rustup -n "__fish_seen_subcommand_from doc" -s V -l version -d 'Prints version information' 121 - complete -c rustup -n "__fish_seen_subcommand_from man" -l toolchain -d 'Toolchain name, such as \'stable\', \'nightly\', or \'1.8.0\'. For more information see `rustup help toolchain`' 122 - complete -c rustup -n "__fish_seen_subcommand_from man" -s h -l help -d 'Prints help information' 123 - complete -c rustup -n "__fish_seen_subcommand_from man" -s V -l version -d 'Prints version information' 124 - complete -c rustup -n "__fish_seen_subcommand_from self" -s h -l help -d 'Prints help information' 125 - complete -c rustup -n "__fish_seen_subcommand_from self" -s V -l version -d 'Prints version information' 126 - complete -c rustup -n "__fish_seen_subcommand_from self" -f -a "update" -d 'Download and install updates to rustup' 127 - complete -c rustup -n "__fish_seen_subcommand_from self" -f -a "uninstall" -d 'Uninstall rustup.' 128 - complete -c rustup -n "__fish_seen_subcommand_from self" -f -a "upgrade-data" -d 'Upgrade the internal data format.' 129 - complete -c rustup -n "__fish_seen_subcommand_from self" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 130 - complete -c rustup -n "__fish_seen_subcommand_from update" -s h -l help -d 'Prints help information' 131 - complete -c rustup -n "__fish_seen_subcommand_from update" -s V -l version -d 'Prints version information' 132 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s y 133 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s h -l help -d 'Prints help information' 134 - complete -c rustup -n "__fish_seen_subcommand_from uninstall" -s V -l version -d 'Prints version information' 135 - complete -c rustup -n "__fish_seen_subcommand_from upgrade-data" -s h -l help -d 'Prints help information' 136 - complete -c rustup -n "__fish_seen_subcommand_from upgrade-data" -s V -l version -d 'Prints version information' 137 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 138 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 139 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -s h -l help -d 'Prints help information' 140 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -s V -l version -d 'Prints version information' 141 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -f -a "enable" -d 'Enable rustup telemetry' 142 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -f -a "disable" -d 'Disable rustup telemetry' 143 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -f -a "analyze" -d 'Analyze stored telemetry' 144 - complete -c rustup -n "__fish_seen_subcommand_from telemetry" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 145 - complete -c rustup -n "__fish_seen_subcommand_from enable" -s h -l help -d 'Prints help information' 146 - complete -c rustup -n "__fish_seen_subcommand_from enable" -s V -l version -d 'Prints version information' 147 - complete -c rustup -n "__fish_seen_subcommand_from disable" -s h -l help -d 'Prints help information' 148 - complete -c rustup -n "__fish_seen_subcommand_from disable" -s V -l version -d 'Prints version information' 149 - complete -c rustup -n "__fish_seen_subcommand_from analyze" -s h -l help -d 'Prints help information' 150 - complete -c rustup -n "__fish_seen_subcommand_from analyze" -s V -l version -d 'Prints version information' 151 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 152 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 153 - complete -c rustup -n "__fish_seen_subcommand_from set" -s h -l help -d 'Prints help information' 154 - complete -c rustup -n "__fish_seen_subcommand_from set" -s V -l version -d 'Prints version information' 155 - complete -c rustup -n "__fish_seen_subcommand_from set" -f -a "default-host" -d 'The triple used to identify toolchains when not specified' 156 - complete -c rustup -n "__fish_seen_subcommand_from set" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)' 157 - complete -c rustup -n "__fish_seen_subcommand_from default-host" -s h -l help -d 'Prints help information' 158 - complete -c rustup -n "__fish_seen_subcommand_from default-host" -s V -l version -d 'Prints version information' 159 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 160 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information' 161 - complete -c rustup -n "__fish_seen_subcommand_from completions" -s h -l help -d 'Prints help information' 162 - complete -c rustup -n "__fish_seen_subcommand_from completions" -s V -l version -d 'Prints version information' 163 - complete -c rustup -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information' 164 - complete -c rustup -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information'
+1 -1
fish/.config/fish/config.fish
··· 18 18 19 19 set fish_user_paths ~/bin ~/.nix-profile/bin /run/current-system/sw/bin 20 20 21 - if type nix-locate ^/dev/null >/dev/null 21 + if type nix-locate 2>/dev/null >/dev/null 22 22 function nix_locate_bin --on-event fish_command_not_found 23 23 if not test -t 1 24 24 __fish_default_command_not_found_handler $argv[1]