aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_pager.cpp
Commit message (Collapse)AuthorAge
* Fix for infinite loop in cycle_competions, and potential issue inGravatar ridiculousfish2013-09-10
| | | | fish_pager when given an empty completion list
* Generate version numbers dynamicallyGravatar David Adam (zanchey)2013-08-11
| | | | | | | | This commit hooks the Makefile up to generate a FISH_BUILD_VERSION symbol and kills off PACKAGE_VERSION in .cpp files. It also modifies the tarball generation script to add the necessary version file for releases.
* Add errret param to other calls to setuptermGravatar ridiculousfish2013-05-13
|
* Kill termio.h and sys/termios.hGravatar David Adam (zanchey)2013-03-05
| | | | | | | | | | | On FreeBSD, compilation complains that "this file includes <sys/termios.h> which is deprecated, use <termios.h> instead". On Linux and FreeBSD, <sys/termios.h> literally just pulls in <termios.h>. On OS X and Solaris, <termios.h> pulls in <sys/termios.h>. <termio.h> doesn't exist on FreeBSD or Mac OS X, and on Linux is marked as deprecated and just includes <termios.h>. It does exist on Solaris, but no `struct termio` is ever actually used in the codebase.
* Hopeful fix for https://github.com/fish-shell/fish-shell/issues/594Gravatar ridiculousfish2013-02-26
|
* Eliminate str2wcsGravatar ridiculousfish2012-12-19
|
* Fix indentation of switch statementsGravatar ridiculousfish2012-11-19
|
* Apply new indentation, brace, and whitespace styleGravatar ridiculousfish2012-11-18
|
* Remove trailing whitespaces and change tabs to spacesGravatar Łukasz Niemier2012-11-18
|
* Bring back ellipsisGravatar ridiculousfish2012-11-05
|
* Remove ellipsis and newlines from long linesGravatar Siteshwar Vashisht2012-09-18
| | | | Fix for issue https://github.com/fish-shell/fish-shell/issues/300
* Minor updatesGravatar maxfl2012-08-25
| | | | | * Add -L/--long completion for 'set' command. * Fix completion description color.
* Additional warnings cleanup, effective C++ violations, dead code removalGravatar ridiculousfish2012-08-05
|
* Cleaned up lots of typecasts, simplified some string handlingGravatar ridiculousfish2012-08-04
|
* Lots of work towards making fish build without warnings on Mountain Lion, ↵Gravatar ridiculousfish2012-08-04
| | | | mostly in terms of using size_t instead of int
* Warning cleanupGravatar ridiculousfish2012-08-04
|
* fix logicGravatar maxfl2012-06-29
|
* Step coloring for fish_pager introduces new variableGravatar maxfl2012-06-29
| | | | | | fish_pager_color_secondary to set background of every second completion line. It simplifies finding the options corresponding to given description. Default color is 151515.
* Added some missing calls to setup_fork_guards() in utilities.Gravatar ridiculousfish2012-03-07
| | | | Made echo a builtin
* Begin to rework term256 supportGravatar ridiculousfish2012-03-05
|
* Removed buffer_tGravatar ridiculousfish2012-03-04
|
* Fix a bug where wfopen would always failGravatar ridiculousfish2012-03-03
| | | | Removed some buffer_t
* Remove string_buffer_t (!)Gravatar ridiculousfish2012-03-03
|
* Some initial changes to use CLO_EXEC, with an eye towards some day using it ↵Gravatar Peter Ammon2012-03-02
| | | | correctly.
* Removed a lot of string_buffer_tGravatar ridiculousfish2012-02-22
|
* Attempt to make fish_pager.cpp compile on LinuxGravatar ridiculousfish2012-02-13
|
* Color workGravatar ridiculousfish2012-02-11
|
* Final removal of halloc. It's like Christmas Morning.Gravatar ridiculousfish2012-02-09
|
* Fix for pager regressionGravatar ridiculousfish2012-02-09
|
* More changes to fish pager to fix regressions. It didn't actually work.Gravatar ridiculousfish2012-02-09
|
* Removed halloc and al_list from fish_pager. paging still seems to workGravatar ridiculousfish2012-02-09
|
* Added autosuggestion color variable fish_color_autosuggestionGravatar ridiculousfish2012-02-06
| | | | Fixed that nasty bug where fish would apply a color to both the foreground and background (yuck)
* Improved const-correctness, eliminating warnings.Gravatar Peter Ammon2012-01-14
| | | | Migrated some int to size_t
* Incorporate Siteshwar's patch for building on LinuxGravatar ridiculousfish2012-01-05
|
* Some changes to migrate towards C++ and a multithreaded modelGravatar ridiculousfish2011-12-26
|
* Initial C++ conversionGravatar ridiculousfish2011-12-26