aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
Commit message (Collapse)AuthorAge
* Remove SHLVL check.Gravatar Aaron Gyes2016-06-18
| | | | Fixes #3154.
* Lossless recompress of images with pngcrush+zopfliGravatar Aaron Gyes2016-06-18
| | | | And tweak RTF.
* Decrease minimum SHLVL for suspend without --forceGravatar Aaron Gyes2016-06-15
| | | | There is some discussion on #2269
* `string escape` some eval callsGravatar Aaron Gyes2016-06-15
|
* Refine reading ssh_config (#3146)Gravatar Boris Aranovich2016-06-15
| | | | | | | | | | | | https://www.freebsd.org/cgi/man.cgi?query=ssh_config&sektion=5 1. It is possible to add multiple whitespace characters between the keyword (i.e. Host) and the argument(s). 2. It is allowed to have a single = and whitespace between the keyword and the argument(s). 3. It is possible to add multiple host names under a single Host directive by spacing the names apart. 1. and 3. are actual conventions that we use in our team, and I couldn't get auto-complete working for fish without this modification. Modification explained: a. The space between Host(?:name)? and the \w.* was replaced by (?:\s+|\s*=\s*) to match any sequence of whitespace characters, or optional whitespaces with a single =, per spec. b. Result of first replacement is piped through another string replace to switch duplicate whitespace characters to a single space, and then piped to be split by that space. This allows specifying several aliases or host names in a single Host/Hostname definition, also per spec.
* Quote `eval ... webconfig.py` in fish_config.fishGravatar Aaron Gyes2016-06-14
| | | | | | This was causing issues launching fish_config on OS X if fish.app is renamed to contain a space (noted, but likely not the actual problem, in issue #3140)
* Completion for string match --invertGravatar Aaron Gyes2016-06-13
| | | | Also adds descriptions for some other options which were absent.
* Merge pull request #3123 from moverest/completionGravatar Fabian Homborg2016-06-10
|\ | | | | Extend autocompletion support
* | Allow compressed man pages in `help`Gravatar Fabian Homborg2016-06-10
| | | | | | | | | | | | | | | | It seems Fedora compresses our whopping 340k of man pages. Fixes #3130. Inspired by @TieDyedDevil's work there.
| * Fix and enhance netctl-auto completionsGravatar Clément Martinez2016-06-08
| | | | | | | | | | | | | | | | | | | | | | I mixed things up with `netctl` somehow. Since the two are quite different they do not have the same function, they should not have the same completions. I also find that I would be smarter to only display the relevent profiles given what we want to do. If we want to disable a profile we should only complete with enabled profile for completion for instance. I don't know if the implemention is nice enough however.
| * Add help option completions for godoc, gofmt, goimports, golint, gorenameGravatar Clément Martinez2016-06-08
| |
| * Clean mkdir completionsGravatar Clément Martinez2016-06-08
| |
| * Split __fish_print_modules from modprob.fish and modinfo.fishGravatar Clément Martinez2016-06-08
| |
| * Refine mkdir completions for non SELinux and non GNUGravatar Clément Martinez2016-06-08
| |
| * Add xz completionsGravatar Clément Martinez2016-06-08
| |
| * Add modinfo completionsGravatar Clément Martinez2016-06-08
| |
| * Add lscpu completionsGravatar Clément Martinez2016-06-08
| |
| * Add gorename completionsGravatar Clément Martinez2016-06-08
| |
| * Add golint completionsGravatar Clément Martinez2016-06-08
| |
| * Add goimports completionsGravatar Clément Martinez2016-06-08
| |
| * Clean udisksctlGravatar Clément Martinez2016-06-08
| |
| * Clean netctl-auto and udiskctl completionsGravatar Clément Martinez2016-06-07
| |
| * Add udisksctl autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add termite autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add poweroff autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add netctl-auto autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add mkdir autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add gofmt autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add godoc autocompleteGravatar Clément Martinez2016-06-07
| |
| * Add alsamixer autocompleteGravatar Clément Martinez2016-06-07
|/
* git completions: Only take general options before commandGravatar Fabian Homborg2016-06-04
|
* git completions: Ignore stderr everywhereGravatar Fabian Homborg2016-06-04
| | | | | | This allows us to run git commands outside of a git repo. Fixes #3114.
* Add completions for git blame command (#3094)Gravatar Hunsu2016-06-02
|
* Do not hardcode RGB values in color definitions.Gravatar Jorge Bucaran2016-06-01
|
* correct __fish_contains_opts to __fish_contains_opt (#3102)Gravatar Jens Fredskov2016-06-01
| | | Completion throws and error about the command `__fish_contains_opts` beings unknown. It seems to be a simple typo, as all other completions use `__fish_contains_opt`
* Add Purge Subcommand Completion for Apt (#3097)Gravatar Fahri Cihan Demirci2016-06-01
|
* Style fixes for fish_vi_cursorGravatar Fabian Homborg2016-05-30
| | | | | | "$fcn" [ci skip]
* Fix utf-8 decoding error in file_is_overwritable of ↵Gravatar Andreas Wagner2016-05-29
| | | | create_manpage_completions.py
* Remove stray "0" output from man completionsGravatar Fabian Homborg2016-05-29
|
* Man completions: Don't show sections when completing pagesGravatar Fabian Homborg2016-05-29
|
* Man completions: Show all pages for a sectionGravatar Fabian Homborg2016-05-29
| | | | If one is given, of course.
* Indent __fish_git_promptGravatar Fabian Homborg2016-05-29
|
* Git prompt: Remove legacy optionGravatar Fabian Homborg2016-05-29
| | | | | Git has supported `rev-list --count` for years, so this shouldn't be needed anymore.
* Stringify git promptGravatar Fabian Homborg2016-05-29
|
* git completions: Add general optionsGravatar Fabian Homborg2016-05-29
| | | | | | These are the options between `git` and the subcommand. Fixes #3087.
* Git prompt: Shorten the sha ourselvesGravatar Fabian Homborg2016-05-28
| | | | Possibly fixes #3083.
* Git prompt: Only shorten sha if neededGravatar Fabian Homborg2016-05-28
| | | | | | | | | | | This speeds up the common case when IO is slow, e.g. when used with sshfs. We only use the short sha for figuring out whether the state is valid (for which a long sha should also work) and for display when HEAD is detached (I think that's the correct git-ism). Working towards #3083.
* Funced: Make removal safer, take twoGravatar Fabian Homborg2016-05-28
| | | | | Now we try to remove the file and then the directory, without forcing anything, showing any (quite unexpected) error to the user, once.
* Split off __fish_complete_blockdevice from mount.fish.Gravatar Frederik “Freso” S. Olesen2016-05-27
| | | | | | The __fish_complete_blockdevice function can be useful to other completions than mount.fish, so it should live on its own so its available to those.
* Remove executable flag from pacaur completion.Gravatar Frederik “Freso” S. Olesen2016-05-27
|