aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Fix __fish_filter_mime to not pass 0 to seqGravatar ridiculousfish2013-04-28
|
* Fix typos in count documentationGravatar ridiculousfish2013-04-28
|
* Fix broken sentence in the Job Control section of the user doc.Gravatar Eivind Uggedal2013-04-28
|
* Teach fish about rxvt's special key bindingsGravatar ridiculousfish2013-04-28
| | | | https://github.com/fish-shell/fish-shell/issues/657
* Formatting cleanup of builtin_containsGravatar ridiculousfish2013-04-28
|
* Refactored out individual VCS completions.Gravatar Tin Tvrtkovic2013-04-28
| | | | Autogenerated completions for Mercurial using a recent version (no extensions installed).
* Teach the Makefile to only instruct the user to edit /etc/shells if it needs ↵Gravatar ridiculousfish2013-04-27
| | | | to be edited
* Large set of changes to improve history atomicity on filesystems that do not ↵Gravatar ridiculousfish2013-04-27
| | | | | | support locking Should address https://github.com/fish-shell/fish-shell/issues/685
* Typo in tar completion (vevrify->verify)Gravatar Adam2013-04-27
|
* Rely on $PWD instead of getcwd() more oftenGravatar ridiculousfish2013-04-27
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/696
* Squashed commit of the following:Gravatar ridiculousfish2013-04-26
| | | | | | | | | | | | | | | | | | commit 839e9c2ec00fcd72b19f1d415bee26af7f51f8aa Author: lledey <lledey@gmail.com> Date: Tue Apr 23 13:28:23 2013 +0200 Fix git branch completion if grep output is not the default one Signed-off-by: lledey <lledey@gmail.com> commit 7798ed05744636f67d177bcb47d48d6aeca12787 Author: lledey <lledey@gmail.com> Date: Tue Apr 23 10:35:35 2013 +0200 Fix git branch completion if grep output is not the default one Signed-off-by: lledey <lledey@gmail.com>
* Make ack completion not spew to stderr if ack is not installedGravatar ridiculousfish2013-04-26
|
* Allow dynamicly adding typesGravatar Konrad Borowski2013-04-26
|
* Insanely long ack completionGravatar Konrad Borowski2013-04-26
|
* Fix for reported "out of memory" for filesystems that return -1 as _PC_NAME_MAXGravatar ridiculousfish2013-04-26
|
* Some documentation cleanupGravatar Steven Fackler2013-04-21
|
* Fix for issue where tab completing an empty string would produce no resultsGravatar ridiculousfish2013-04-21
|
* Remove code that disabled tests (oops)Gravatar ridiculousfish2013-04-21
|
* Moved lein.fish under share/completionsGravatar Siteshwar Vashisht2013-04-21
|
* Fix typo in docsGravatar Dmitry Chestnykh2013-04-20
|
* Append / to the end of directories for scp completion as suggested by ↵Gravatar Thomas Kühnel2013-04-20
| | | | https://github.com/fish-shell/fish-shell/issues/42#issuecomment-7205032
* Teach xcode build about $BINDIRGravatar ridiculousfish2013-04-20
|
* Changed paths.bin to respect BINDIRGravatar Brent Sanders2013-04-20
| | | | | | | | | | | | | | | | | | | | | | | The compiled-in path to bin dir was not correct; it made the common assumption that `$(prefix)` == `$(prefix)/bin` which is usually true, but not in all cases. 1. [machine specific files](http://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-exec_005fprefix) should use `$(exec_prefix)` (`@exec_prefix@` in Makefile.in) instead of the usual `$(prefix)`. 2. [executable programs](http://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-bindir) should use the more-specific `$(bindir)` (`@bindir@` in Makefile.in) instead of assuming `$(exec_prefix)/bin` as this allows the executable install location to be changed with the `--bindir=_foo_` option to `./configure`. Fortunately, the makefile is mostly correct and *installs* the executable in the correct location. The problem shows up later such as during tab-completion, when fish_pager is run - the compiled-in path it uses was the incorrect `$(prefix)/bin` resulting in an "Unknown command" error, which only required this small fix.
* Don't block "hidden files" for wildcard expansions that aren't files (like case)Gravatar ridiculousfish2013-04-20
| | | | https://github.com/fish-shell/fish-shell/issues/667
* Teach fish to exit without destructors in the normal pathGravatar ridiculousfish2013-04-19
|
* Minor cleanup in syntax highlightingGravatar ridiculousfish2013-04-19
|
* print_variables should use ellipsis_char instead of literal ellipsisGravatar ridiculousfish2013-04-19
|
* Prevent inline destructor of completion_t to reduce compiled code size a bitGravatar ridiculousfish2013-04-19
|
* Rearrange some macros in configure.ac so that CXXFLAGS can default to -g -O2 ↵Gravatar ridiculousfish2013-04-19
| | | | again
* Build with -fno-exceptionsGravatar ridiculousfish2013-04-19
| | | | https://github.com/fish-shell/fish-shell/issues/664
* Fixed compilation by adding missing header libintl.hGravatar Siteshwar Vashisht2013-04-17
|
* Fixed check for msgfmt in configure.acGravatar Siteshwar Vashisht2013-04-16
|
* Teach fish_config how to find fish from __fish_bin_dirGravatar ridiculousfish2013-04-15
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/621
* Eliminate a static string from input_terminfo_get_sequenceGravatar ridiculousfish2013-04-15
|
* Try to fix UnicodeDecodeError in create_manpage_completions.pyGravatar ridiculousfish2013-04-15
| | | | https://github.com/fish-shell/fish-shell/issues/658
* Update go.fishGravatar hansstimer2013-04-14
| | | | Fix typo for vet subcommand
* add completion for the Go toolGravatar Hans Stimer2013-04-14
|
* Turn off RTTI when building with libstdc++Gravatar ridiculousfish2013-04-14
|
* Removed INSTALL file, since it mostly duplicates what's present in README.mdGravatar ridiculousfish2013-04-14
|
* Added note about how to install ncurses, and what to do on EC2Gravatar ridiculousfish2013-04-14
| | | | Addresses https://github.com/fish-shell/fish-shell/pull/509
* Fix to make create_manpage_completions work with Python 3Gravatar ridiculousfish2013-04-14
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/658 ?
* Use 'command git' instead of git to defeat certain git aliasesGravatar ridiculousfish2013-04-14
| | | | https://github.com/fish-shell/fish-shell/pull/622
* TyposGravatar nmeum2013-04-14
|
* Remove "law of minimalism" since echo is now a builtin and we're pretty ↵Gravatar ridiculousfish2013-04-13
| | | | | | clearly prioritizing performance over modularity. https://github.com/fish-shell/fish-shell/issues/612
* Teach OS X package builder script to look up the version dynamicallyGravatar ridiculousfish2013-04-13
|
* Fixed a typoGravatar nmeum2013-04-13
| | | | It should be 'directory' not 'direcotry'
* Added WorkspaceSettings.xcsettings to prevent auto-creation of schemesGravatar ridiculousfish2013-04-13
|
* Add the Xcode schemesGravatar ridiculousfish2013-04-13
|
* Replace OS X installer PackageMaker document with a distribution file and scriptGravatar ridiculousfish2013-04-13
|
* Reduce compiled code size a bitGravatar ridiculousfish2013-04-13
|