aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.c
Commit message (Expand)AuthorAge
* Add a 'generic' type of event that can be emited from any piece of code or by...Gravatar liljencrantz2007-08-20
* Minor error handling improvements and minor code polishGravatar axel2007-08-02
* Make sure that io redirections are respected by the '.' builtin. This was not...Gravatar axel2007-04-26
* Use cpp macro to avoid manually adding sentinel value to varargs functionsGravatar axel2007-04-17
* Minor code cleanup in history search codeGravatar axel2007-04-17
* Fix bug where case insensitive file completions would get directory component...Gravatar axel2007-03-25
* Add missing sentinel value in function call - potential crash bugGravatar axel2007-03-25
* Add a blacklist of console types that are known not to support terminal title...Gravatar axel2007-03-18
* Fix occasional shoowing of the same completion twice. Than ks to Tassilo Horn...Gravatar axel2007-03-18
* Initial checkin of code for using case insensitive completion as a fallback f...Gravatar axel2007-03-01
* Add breakpoint builtinGravatar axel2006-11-11
* Fourth phase of using a real struct for passing around completions - make exp...Gravatar axel2007-02-19
* First phase of using a real struct for passing around completions - only use ...Gravatar axel2007-02-09
* Fix bug where pressing ^C while in the read builtin would mess up the block e...Gravatar axel2007-02-01
* Add memory allocation checkGravatar axel2007-01-30
* Fix bug where quiting from the read builtin could cause the prompt not to rep...Gravatar axel2007-01-30
* Fix repaint bug for read - screen needed repainting after call to readGravatar axel2007-01-30
* Add support for -s switch to read builtin, enables shell syntax highlighting ...Gravatar axel2007-01-30
* Fix crash in tab completion code when completing an imcomplete backsalsh escapeGravatar axel2007-01-27
* Make sure read returns with a non-zero status if no string was actually givenGravatar axel2007-01-16
* Minor edits - add a few input checks, remove a few commented pieces of debug ...Gravatar axel2007-01-16
* Redo the interface between fish and the completion pager. The old interface h...Gravatar axel2007-01-08
* Fix potential crash bug when pasting large amounts of text into the shellGravatar axel2007-01-08
* Make sure cwd colors update when the variable changes. This is a common regre...Gravatar axel2006-12-12
* Flash commandline each time completion fails, not just the first oneGravatar axel2006-12-01
* Only flash commandline, not entire screen, when completion failsGravatar axel2006-12-01
* Make keyboard shortcuts that execute a shellscript function (^D, for example)...Gravatar axel2006-12-02
* Minor edits, whitespace fixes, etc.Gravatar axel2006-11-20
* Minor code edit - move a bit of code into its own functionGravatar axel2006-11-20
* Correctly handle multiple backslashes at end of line w.r.t. multiline handlingGravatar axel2006-11-20
* Minor comment edits and removal of a warningGravatar axel2006-11-19
* 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