aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Make "Checking how to use..." lower case.Gravatar Cheer Xiao2013-01-08
| | | | | The configure script generated by autoconf uses lower case "checking". Let's keep in line. :)
* Make fish_config prompt color changes work more oftenGravatar ridiculousfish2013-01-08
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/505
* Document new MAC address behaviorGravatar ridiculousfish2013-01-08
|
* Make fishd base its variable files on the MAC address instead of hostnameGravatar ridiculousfish2013-01-08
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/183
* Keybinding of \ew and \ed: Insert a newline before displaying infoGravatar Cheer Xiao2013-01-07
|
* Teach build_documentation.sh to look in /Applications/Doxygen.appGravatar ridiculousfish2013-01-07
|
* Teach Xcode project how to build successfully without DoxygenGravatar ridiculousfish2013-01-07
|
* Re-enable alias redefinitionGravatar lledey2013-01-07
| | | | | | Fixes #494 Signed-off-by: lledey <lledey@gmail.com>
* remove -fno-optimize-sibling-calls flag for non-buggy setups; add extra ↵Gravatar Jan Kanis2013-01-07
| | | | comment regarding ./configure arguments
* Fix for an out-of-range exception when resizing the window during funcedGravatar ridiculousfish2013-01-06
| | | | Addresses https://github.com/fish-shell/fish-shell/issues/498
* Wrong sense for is_interactive_session checkGravatar ridiculousfish2013-01-06
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/499
* Fix for builtin_test crashGravatar ridiculousfish2013-01-06
| | | | https://github.com/fish-shell/fish-shell/issues/497
* Add some more tests for autosuggestion combiningGravatar ridiculousfish2013-01-06
|
* Pass -f to rm share/man/man1 to avoid a benign error messageGravatar ridiculousfish2013-01-06
|
* When the user input contains capital letters, use its case rather than the ↵Gravatar ridiculousfish2013-01-05
| | | | | | autosuggestion's case Fixes https://github.com/fish-shell/fish-shell/issues/335
* Implement builtin [ via builtin testGravatar ridiculousfish2013-01-05
|
* Reset the color before we clear to eolGravatar ridiculousfish2013-01-04
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/493
* Hack around xdm's dumb assumption that the login shell is POSIX compliant so ↵Gravatar ridiculousfish2013-01-04
| | | | | | | we no longer kill OpenSUSE https://github.com/fish-shell/fish-shell/issues/367 Also fix some formatting
* Revert shared_ptr<io_data_t> changes until kinks are ironed outGravatar ridiculousfish2013-01-04
| | | | | | | | | | | https://github.com/fish-shell/fish-shell/pull/487 Revert "Merge branch 'oo-io' of git://github.com/xiaq/fish-shell into xiaq-oo-io" This reverts commit f3c8f535a48d5fdd518bd60879ade948bc8be7e6, reversing changes made to b02f6cf3bc4343cf3e068dee3cb46de7139a5a27. Also reverts ac023f7588e562a03fdea7fd2feda487f18827c7 and a79d3c680c9548566309121630dadc94e48934c4
* Remove io_duplicate, which is no longer usedGravatar ridiculousfish2013-01-04
|
* Replace some shared_ptrs with const shared_ptr &. Don't use shared_ptr in ↵Gravatar ridiculousfish2013-01-04
| | | | postfork.cpp. Eliminate copy constructor in io_data_t. Simplify some other uses of shared_ptr<io_data_t>
* Merge branch 'oo-io' of git://github.com/xiaq/fish-shell into xiaq-oo-ioGravatar ridiculousfish2013-01-03
|\
* | Teach the Xcode project how to install the man pagesGravatar ridiculousfish2013-01-03
| |
* | Teach Xcode how to pass arguments to build_documentation.shGravatar ridiculousfish2013-01-03
| |
* | Change build_documentation to take its paths as arguments, and the ↵Gravatar ridiculousfish2013-01-03
| | | | | | | | Makefile.in to pass them
* | Make the Makefile mv man pages instead of cp them from help_doc, because ↵Gravatar ridiculousfish2013-01-03
| | | | | | | | help_doc is about to be deleted
* | Make share/man/man1 manpages get built againGravatar ridiculousfish2013-01-03
| | | | | | | | Addresses https://github.com/fish-shell/fish-shell/issues/491
* | really fix bug in export status of universal vars; add tests for that bugGravatar Jan Kanis2013-01-02
| |
* | fix bug in export status of universal variable assignmentGravatar Jan Kanis2013-01-02
| |
* | Remove origin/HEAD lines from __fish_git_branches.Gravatar Vincent Driessen2013-01-02
| | | | | | | | | | Related discussion: http://stackoverflow.com/questions/354312/why-is-origin-head-shown-when-running-git-branch-r
* | re-enable tests that were accidentally disabled in 0b1e3718Gravatar Jan Kanis2013-01-01
| |
* | make 'alias' check for recursive calls and insert 'command'; update docs, ↵Gravatar Jan Kanis2013-01-01
| | | | | | | | fix #486
| * Use const shared_ptr<io_data_t>& instead of copying where appropriate.Gravatar Cheer Xiao2013-01-01
| |
| * Convert all io_data_t copying to shared_ptr copying.Gravatar Cheer Xiao2013-01-01
| | | | | | | | Copy constructor of io_data_t is removed.
| * Use shared_ptr to manage io_data_t*.Gravatar Cheer Xiao2012-12-31
|/
* parsing numbers imho better uses + rather than |Gravatar Jan Kanis2012-12-30
|
* document set -L/--long optionGravatar Jan Kanis2012-12-29
|
* clarify docs on variable scope in functionsGravatar Jan Kanis2012-12-29
|
* Fix a bad use of testGravatar ridiculousfish2012-12-27
|
* Another attempt to make build_documentation.sh work in LinuxGravatar ridiculousfish2012-12-27
|
* Try to make mktemp work on LinuxGravatar ridiculousfish2012-12-27
|
* Make the Makefile use the new build_documentation.sh script (gulp)Gravatar ridiculousfish2012-12-27
|
* Make fish more robust when multiple instances are started at onceGravatar ridiculousfish2012-12-27
|
* Factored out help_doc generation into build_tools/build_documentation.shGravatar ridiculousfish2012-12-27
|
* Teach help how to not drop fragments on OS XGravatar ridiculousfish2012-12-27
|
* Teach help how to go to the web if documentation is not installedGravatar ridiculousfish2012-12-27
|
* Re-point some URLs at the fish homepage fishshell.comGravatar ridiculousfish2012-12-27
|
* Teach fish_print_commands how to use __fish_datadirGravatar ridiculousfish2012-12-27
|
* Re-teach Makefile.in how to generate proper version numbers in man pagesGravatar ridiculousfish2012-12-27
|
* Made autoconf stop generating Doxyfile.help in preparation for Xcode ↵Gravatar ridiculousfish2012-12-26
| | | | documentation build phase