aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | Doc fix where wrong file was referenced in an exampleGravatar ridiculousfish2013-05-12
| |
| * Correct sizes of certain fish.app iconsGravatar ridiculousfish2013-05-05
|/
* Typos in the fish OS X package installer rtf fileGravatar ridiculousfish2013-05-05
|
* Formatting and style updatesGravatar ridiculousfish2013-05-05
|
* Avoid generating man page and help section for printf (to fallback on system ↵Gravatar Siteshwar Vashisht2013-05-05
| | | | man page for printf)
* Added documentation for printfGravatar Siteshwar Vashisht2013-05-05
| | | | Fix for https://github.com/fish-shell/fish-shell/issues/488
* Add completions for cabal; closes #567Gravatar Dag Odenhall2013-05-04
|
* Manually cleaned up Mercurial completions.Gravatar Tin Tvrtkovic2013-05-04
|
* Clarify "input/output methods" in documentationGravatar ridiculousfish2013-05-04
|
* Merge branch 'zanchey-docs'Gravatar ridiculousfish2013-05-04
|\ | | | | | | | | Conflicts: doc_src/index.hdr.in
| * Add a note about getting help through man pagesGravatar ridiculousfish2013-05-04
| |
* | Fixed small typoGravatar Kurtis Nusbaum2013-05-01
| | | | | | | | | | | | Fixed a small typo that I noticed in the design docs. Pretty sure it was meant to say "turned off" instead of "turned of".
* | Tiny typo.Gravatar Eivind Uggedal2013-05-01
| |
| * index.hdr.in: slightly more controversial changesGravatar David Adam2013-04-30
| | | | | | | | | | | | | | | | | | | | | | - Clarify wording in functions section - Use the term aliases rather than wrappers - Clarification of concepts and better? examples in variable expansion - Likewise in environment variables - Using the phrase builtin commands rather than builtins - Tidy up keybindings a bit - Another example in the history section - Remove TODO section in favour of mailing list, GitHub and IRC link
| * index.hdr.in: (hopefully) non-controversial editsGravatar David Adam2013-04-30
| |
| * index.hdr.in: add code markupGravatar David Adam2013-04-30
| |
| * status command: improve help textGravatar David Adam2013-04-29
| |
| * miscellaneous typosGravatar David Adam2013-04-29
|/
* Make trap sort of work on OS XGravatar ridiculousfish2013-04-28
| | | | https://github.com/fish-shell/fish-shell/issues/607
* 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
|