aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* docs: Rename cross to cartesian product, clarifyGravatar Fabian Homborg2015-09-17
|
* systemctl completions: Support systemd in /libGravatar Fabian Homborg2015-09-16
| | | | | | | Debian has not merged /usr/lib and /lib, so they install the `systemd` binary at /lib/systemd/systemd. See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790671
* Complete atom package manager or apmdGravatar Dan Underwood2015-09-16
| | | | Completions for `apm` now support both the Advanced Power Management client and the Atom text editor.
* Fix issue with pkg --jail=value completionGravatar Konrad Borowski2015-09-16
|
* Add pkgng command completionsGravatar Konrad Borowski2015-09-16
| | | | Fixes #1054.
* Informative git prompt: Handle root/toor usersGravatar Fabian Homborg2015-09-15
| | | | | | Fixes #961 This should probably be in a helper function
* Fix process expansion on OS XGravatar ridiculousfish2015-09-15
| | | | | Puts back sys/sysctl.h header, so we know to use BSD style process expansion
* Document cross-productGravatar Fabian Homborg2015-09-15
| | | | | | At least in tutorial for now. Fixes #2341
* Merge pull request #2388 from alco/patch-1Gravatar Fabian Homborg2015-09-15
|\ | | | | Fix a typo in docs/index
| * Fix a typo in docs/indexGravatar Alexei Sholik2015-09-15
|/
* Webconfig: It's abbr --erase, not abbr --removeGravatar Fabian Homborg2015-09-13
| | | | | This was renamed in c0cf25cf0b28969dd9ef821f7952f42783ed6720 but never in webconfig.
* Webconfig: abbr doesn't support "--"Gravatar Fabian Homborg2015-09-13
| | | | Fixes #2276
* Fix tests under certain vswprintf callsGravatar ridiculousfish2015-09-12
| | | | | Work around an issue where vswprintf may not append ANY_STRING from a format specifier
* Fix typo in documentationGravatar Fabian Homborg2015-09-12
|
* Fix npm run completion executing only on completions load, also:Gravatar Stefan Maric2015-09-12
| | | | * Better handling of `npm run` output
* Remove redundant completions that lack descriptions for npmGravatar Stefan Maric2015-09-12
|
* Make use of `npm completion`Gravatar Stefan Maric2015-09-12
|
* Add script values as descriptions to npm run/run-script completionGravatar Stefan Maric2015-09-12
|
* Complete list of available scripts for npm run/run-script commandGravatar Stefan Maric2015-09-12
|
* Document %last process expansionGravatar Fabian Homborg2015-09-11
| | | | Fixes #2379 (at least the most pressing part of it).
* commandline docs: Add examples for the filtersGravatar Fabian Homborg2015-09-11
| | | | i.e. "-t", "-b", "-j" and "-p"
* docs: Improve autoloading/event documentationGravatar Fabian Homborg2015-09-11
| | | | The thing that says "event handlers can't be autoloaded, put it in config.fish". I make good words.
* printf docs: Improve wordingGravatar Fabian Homborg2015-09-11
|
* Add multi-condition example to if documentationGravatar Fabian Homborg2015-09-11
|
* Document printfGravatar Fabian Homborg2015-09-11
|
* Also document autoloaded event handlers in funcsaveGravatar Fabian Homborg2015-09-11
|
* Document problems with event handlers and autoloadingGravatar Fabian Homborg2015-09-11
| | | | Fixes #845.
* Document pushd "+N" and "-N"Gravatar Fabian Homborg2015-09-11
| | | | Fixes #2173
* Document dirs -cGravatar Fabian Homborg2015-09-11
| | | | Fixes #2174
* Fix a typo in documentation for 'complete'Gravatar ridiculousfish2015-09-10
|
* Don't crash on complete -C in non-interactive modeGravatar ridiculousfish2015-09-10
| | | | Fixes #2361
* git completion: Don't check $cmd[1]Gravatar Fabian Homborg2015-09-10
| | | | Before we do anything else, remove this senseless piece of code
* git: Add more options for format-patch and submoduleGravatar Fabian Homborg2015-09-10
| | | | | | Not all of them and only those that don't accept arguments for now Fixes #1996
* git completion: Ignore stderr for all commandsGravatar Fabian Homborg2015-09-10
| | | | Might print unrelated crap if we try to complete while not in a git repository
* Allow set_color options in general for linux VTsGravatar Fabian Homborg2015-09-10
|
* rbenv completion: Remove trailing spacesGravatar Fabian Homborg2015-09-10
|
* Also allow bold, underline and printing colors in linux kernel VTsGravatar Fabian Homborg2015-09-10
| | | | | bold works, printing colors doesn't change anything and underline doesn't _break_.
* reader.cpp: send smkx/rmkx when entering/leaving interactive modeGravatar David Adam2015-09-10
| | | | Closes #2139.
* rbenv completion: Support ruby-build as pluginGravatar Fabian Homborg2015-09-10
| | | | Fixes #1028
* Stop exporting fish configuration directories (argh)Gravatar ridiculousfish2015-09-09
|
* Add __fish_sgrepGravatar Fabian Homborg2015-09-09
| | | | | | Missed in b85a8bb because of `git commit -a`. Fixes #2372
* Rename sgrep to __fish_sgrepGravatar Fabian Homborg2015-09-09
| | | | Makes it harder to cause issues with aliases, see fish-shell#2245
* Add descriptions to dd completionsGravatar Fabian Homborg2015-09-09
| | | | Fixes #752.
* doc_src/complete: update for new options in synopsisGravatar David Adam2015-09-09
| | | | | | Update complete documentation, hopefully to avoid another #2368. [ci skip]
* Use the $TERM value from fish's computed environment for ncurses setupGravatar Chris Pick2015-09-09
| | | | | | | | | | Previously, the process's inherited $TERM value would be used. This prevented users from being able to set $TERM in their config.fish files. To make matters worse, the error message would print the computed $TERM value, giving the mistaken impression that it was being used. Signed-off-by: David Adam <zanchey@ucc.gu.uwa.edu.au>
* Complete tags for git-tag onlyGravatar Jan Ernsting2015-09-07
|
* Ensure display of modified files for git commitGravatar Jan Ernsting2015-09-07
|
* Add missing descriptionGravatar Jan Ernsting2015-09-07
| | | | git reset allows for files and branches as completion results
* Add file completion for git-resetGravatar Jan Ernsting2015-09-07
| | | | Staged files are now offered for completion
* Add completion for git-commitGravatar Jan Ernsting2015-09-07
| | | | Modified files are provided for completion