aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.c
Commit message (Expand)AuthorAge
* Speed up history token searchGravatar axel2006-11-18
* Make hitory token search interruptible. This code was written by Netocrat.Gravatar axel2006-11-17
* Drop search highlighting when exiting search mode. Thanks to Philip Ganchev a...Gravatar axel2006-11-16
* Fix file descriptor leakage from completion pagerGravatar axel2006-11-12
* Make fish send a HUP signal to jobs when the terminal tells it to exit.Gravatar axel2006-11-11
* Fix bugs causing all unmapped inputs below 31 to be interpreted as newlines. ...Gravatar axel2006-11-03
* Minor tweaks in the reader. Vastly simplyfu the insert_char function, and add...Gravatar axel2006-11-02
* Fix beginning/end-of-line input function, add beginning/end-of-buffer functionsGravatar axel2006-11-01
* Minor cleanups and improved error checking in reader codeGravatar axel2006-10-26
* Fix bug where in rare cases calling the exit builtin would cause jobs to not ...Gravatar axel2006-10-25
* Give search highligting precedence over other highligting typesGravatar axel2006-10-22
* Minor code simplifications in the reader and related librariesGravatar axel2006-10-17
* Avoid reading before begining of buffer when moving/erasing word, fixes crash...Gravatar axel2006-10-17
* Make kill-word and backward-kill-word accumulate kills in the killringGravatar axel2006-10-13
* Yet another tweak to the move_word functionGravatar axel2006-10-13
* Fix the kill-line, backward-kill-line and kill-whole-line commands to work co...Gravatar axel2006-10-12
* Allow Meta-newline to always insert a newline characterGravatar axel2006-10-09
* Make it possible to use backslash to stay in multiline mode even when not at ...Gravatar axel2006-10-08
* Add autoindentation supportGravatar axel2006-10-07
* Move the code keeping track of file descriptor modification from reader.c to ...Gravatar axel2006-10-05
* Detect and handle terminals size changesGravatar axel2006-10-05
* Minor code cleanupGravatar axel2006-10-05
* Add the possibility to set the cursor position using the commandline builtinGravatar axel2006-10-05
* Repain prompt after showing completion pagerGravatar axel2006-10-04
* First cleanup of multiline patch - add support for commands longer than one l...Gravatar axel2006-10-02
* First stab at multiline editingGravatar axel2006-10-02
* Minor comment and documentation editsGravatar axel2006-10-02
* Make sure M-d erases last character of word. Thanks to DynWind for the reportGravatar axel2006-09-30
* Fix occasional off-by-one bug in syntax highlighting causing the character ne...Gravatar axel2006-09-25
* Fix issue with ^W and other shortcurs sometimes not deleting anythingGravatar axel2006-09-17
* Fix a bug in completion insertion code on string with escaped quotes. This bu...Gravatar axel2006-09-15
* Don't syntax highlight the character under the cursor, since that may hide th...Gravatar axel2006-09-12
* Updated definiton of move_word, more intuitive behaviour when a token consist...Gravatar axel2006-08-31
* Don't use carriage return on initial painting of the promptGravatar axel2006-08-26
* Use terminfo to look up tab width instead of assuming 8 character tabs when c...Gravatar axel2006-08-24
* Fix use og uncasted 0 as null pointer in vararg function. Potential crash bug...Gravatar axel2006-08-24
* Minor tweaks to previous fish_pager patch to fix two bugsGravatar axel2006-08-22
* fish_pager_via_stdinGravatar stew2006-08-22
* Update fish_pager interface, first try - this is the second patch to redo the...Gravatar axel2006-08-13
* More header/autoconf fixes, improve winsize checkingGravatar axel2006-08-10
* Add missing sys/select.h header needed on FreeBSDGravatar axel2006-08-10
* Only write out titlebar message if it is of non-zero lengthGravatar axel2006-08-09
* Include siginfo.h in all signal-using files to make Solaris happy. Thanks to ...Gravatar axel2006-07-31
* Remove translate.c. The gettext fallback functionality is moved to fallback.c...Gravatar axel2006-07-20
* Fix bug where fish refuses to complete inside som command substitutionsGravatar axel2006-07-08
* Switch from die_mem function to DIE_MEM macro in order to be able to give a l...Gravatar axel2006-07-03
* Implement fallback version of futimes instead of testing for it's existance i...Gravatar axel2006-06-22
* Use the intern function to share the strings used to describe various key bin...Gravatar axel2006-06-22
* Slightly improve accuracy of calculations of prompt widthGravatar axel2006-06-15
* Fix highlighting of search matches, broken by earlier patch for underlining p...Gravatar axel2006-06-15