aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions
Commit message (Collapse)AuthorAge
* Ditch __fish_sgrep in obnam completionsGravatar Fabian Homborg2016-02-28
|
* add completions for diskutil (osx)Gravatar Fabian Weisshaar2016-02-23
|
* Fix `No command 'dscl' found` error of killall commandGravatar Sunguk Lee2016-02-15
| | | | `dscl` command have OSX system, to change `__fish_print_users`
* Fix "replacement string too large" error in pacman completionGravatar Fabian Homborg2016-02-10
| | | | | Turns out we can skip using string altogether, thanks to the magic of the cartesian product.
* eselect completion: Silence eselect php outputGravatar Fabian Homborg2016-02-04
| | | | | The version with the features we use isn't in gentoo stable yet and older versions print a very ugly warning.
* Update eselect completions to work for the php-moduleGravatar Elis Axelsson2016-02-04
| | | | refs #1131
* Replace `tr` invocationsGravatar Fabian Homborg2016-02-03
|
* Replace uses of expr with math/stringGravatar Fabian Homborg2016-02-03
|
* pacman: StringifyGravatar Fabian Homborg2016-02-02
|
* pacman: Remove outdated "$argument" hackGravatar Fabian Homborg2016-02-02
| | | | This doesn't seem to speed up anything.
* pacman: Improve --files completionGravatar Fabian Homborg2016-02-02
| | | | Missed one option and the option-as-command-hack
* Update pacman/makepkg completions for pacman 5Gravatar Fabian Homborg2016-02-02
| | | | Some new options, one new operation - "--files".
* Add support for brew's `desc` subcommandGravatar Dan Martinez2016-01-21
|
* Add all boolean values to pacmd completionGravatar Fabian Homborg2016-01-14
| | | | PA accepts "0", "false" and "off" (among others) for false also for suspend-*.
* Add completions for Pulseaudio's pacmdGravatar Fabian Homborg2016-01-14
| | | | | | | To implement this mostly as a wrapper around pactl, we add the list of commands for this to that. It's 90% the same anyway. (This means that `pactl suspend ` will complete files instead of commands like `pactl banana ` would, but neither is correct)
* Only complete unloaded modules for pactl load-moduleGravatar Fabian Homborg2016-01-14
| | | | This now officially does more than the official bash completion!
* Add profiles and ports completion to pactlGravatar Fabian Homborg2016-01-14
| | | | This is now on par with the official bash completions.
* Add completion for pulseaudio's pactlGravatar Fabian Homborg2016-01-14
|
* Fix typosGravatar Fabian Homborg2016-01-12
| | | | Fixes #2673.
* Add completions for kcmshell5Gravatar Fabian Homborg2016-01-09
| | | | A tool to open KDE Plasma settings menus.
* Add completions for aspGravatar Fabian Homborg2016-01-09
| | | | | A package information and build tool for archlinux, replacement for the ageing "abs".
* Simplify and stringify valgrind completionsGravatar Fabian Homborg2016-01-09
| | | | These used _eval_ when a simple variable capturing would have sufficed.
* Add completions for the haskell 'stack' build toolGravatar Aurélien Deharbe2016-01-08
|
* git completion: Complete commits for all branchesGravatar Fabian Homborg2015-12-30
|
* adds dnf completions for package installsGravatar Botond Erdos2015-12-29
| | | | Since dnf accepts the same arguments as yum, just inherit.
* Fixed kill-signals completion. Added completions for OS X kill command.Gravatar lordlycastle2015-12-28
| | | | Don't generate killall completions when running on Solaris OS - `killall` there literally kills all processes.
* Add database completion for pacmanGravatar Bogdan Sinitsyn2015-12-23
|
* git completions: Add commit hashes for `show`Gravatar Fabian Homborg2015-12-18
| | | | | | | | | | That's probably the part where commit hashes are most used, we can add the other subcommands later. This generates a _lot_ of options, so hooking it up everywhere would be unwise, though our pager helps quite nicely with filtering - typing "Branch" will filter out the commits, and typing other things will filter the subjects, which is quite cool.
* mount completions: Support spaces in mountpointsGravatar Fabian Homborg2015-12-17
| | | | | | This turns '\040' into a space. /etc/mtab also supports other escapes ("\\" for backslash, "\011" for tab), but I can't find documentation for those in fstab.
* Improve mount completion (now with blockdevices!)Gravatar Fabian Homborg2015-12-13
| | | | | | | | | | This adds blockdevices (and directories) and fixes the regexes to no longer include comments but include UUID= and LABEL=, which at least util-linux mount understands. It also shouldn't fail on systems without fstab any longer (like default OSX). Fixes #2606.
* Delete upstreamed docker completionsGravatar Fabian Homborg2015-12-12
| | | | | A better version of these has been in an upstream release, so there's no need to keep this around.
* Update makepkg completionGravatar Fabian Homborg2015-12-11
| | | | A few options were missing and --asroot has been removed
* git completions: add missing description flagsGravatar David Adam2015-12-11
| | | | Fixes syntax error introduced in 4280df3aa2dab.
* Merge pull request #2595 from lordlycastle/masterGravatar Fabian Homborg2015-12-10
|\ | | | | Added OS X completions for open, and seq.
| * Added OS X completions for open, and seq. Added missing stdout redirection ↵Gravatar lordlycastle2015-12-10
| | | | | | | | to /dev/null when checking command's version.
* | git: Add missing options to `git clone`Gravatar mr.Shu2015-12-10
| | | | | | | | | | | | | | | | * Add missing options to `git clone` in order to make the suggestions as similar to the manual (https://git-scm.com/docs/git-clone) as possible. Signed-off-by: mr.Shu <mr@shu.io>
* | git: Add more options to `git cherry-pick`Gravatar mr.Shu2015-12-08
| | | | | | | | | | | | | | * Add more options to `git cherry-pick` so that the suggested options mimic the man page (https://www.git-scm.com/docs/git-cherry-pick/). Signed-off-by: mr.Shu <mr@shu.io>
* | Add completion for pkg-configGravatar Fabian Homborg2015-12-03
| |
* | Add completion for systemd-nspawnGravatar Fabian Homborg2015-12-03
| |
* | Add completion for systemd-analyzeGravatar Fabian Homborg2015-12-03
| |
* | git: Improve completion for git remoteGravatar mr.Shu2015-11-29
| | | | | | | | | | | | | | | | | | | | * Make sure that the `git remote` subcommands are not repeatedly suggested (that is do not suggest a subcommand if there already is one). * Add both long and short options to `git remote` subcommands where appropriate. Signed-off-by: mr.Shu <mr@shu.io>
* | Merge pull request #2573 from mrshu/mrshu/add-missing-git-remote-subcommandsGravatar Fabian Homborg2015-11-28
|\ \ | | | | | | git: Add missing remote subcommands completion
* \ \ Merge pull request #2572 from lordlycastle/masterGravatar Fabian Homborg2015-11-28
|\ \ \ | | |/ | |/| Added completions for cat, cp, mktemp, stat, touch for OS X.
| | * git: Add missing remote subcommands completionGravatar mr.Shu2015-11-28
| |/ |/| | | | | | | | | | | | | * Add completion for missing `git remote` subcommands. * Should fix #2567 Signed-off-by: mr.Shu <mr@shu.io>
| * Added completions for cat, cp, mktemp, stat, touch for OS X.Gravatar lordlycastle2015-11-28
| |
* | Complete bg and fg with job PIDs.Gravatar Daniel Matz2015-11-27
|/
* Add completion for OSX rmGravatar Fabian Homborg2015-11-27
| | | | | As always, this not only doesn't support longopts, but also has some options that GNU rm doesn't - in this case, an undelete function.
* Update hg completionGravatar Daniel Matz2015-11-23
| | | | | | | | | | | | | | | This does a number of things: - Removing trailing space from suggested repos for hg. - Use the string builtin for hg completions. - Add more internal merge tools to hg completion. - Enable completions for abbreviated hg commands. - Stop completing a deprecated hg branches option. - Properly match the hg subcommand when preceeded by global switches. - Stop completing deprecated hg glog. - Complete hg config instead of showconfig. - Properly complete when global switches are before the hg command. - Properly handle the repository switch for hg completions. - Properly handle the hg global switch cwd.
* Add completions for OSX whichGravatar Fabian Homborg2015-11-23
|
* Add more sudo optionsGravatar Fabian Homborg2015-11-23
|