aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
Commit message (Expand)AuthorAge
* Replace the eval builtin with a functionGravatar axel2007-04-23
* Add the possibility for functions which do not shadow the arguments of the ca...Gravatar axel2007-04-23
* Make the . (source) builtin able to read commands from stdinGravatar axel2007-04-23
* Validate variables names when using named arguments for functionsGravatar axel2007-04-23
* Make 'functions' builtin print named arguments of functionsGravatar axel2007-04-23
* Fix minor memory leak on printing help for builtinsGravatar axel2007-04-23
* Prettyfy output of 'functions' builtin a tiny bitGravatar axel2007-04-23
* Move keyword detection code to separate fileGravatar axel2007-04-22
* Minor code tweaksGravatar axel2007-04-17
* Allow named arguments to function instead of only $argv. Philip Ganchev once ...Gravatar axel2007-04-17
* Add breakpoint builtinGravatar axel2006-11-11
* Fix bug in read builtin - signal handlers where not correctly set, causiong ^...Gravatar axel2007-02-01
* Fix occasional duplicate stack trace, reported by Mike Roberts. Also make fis...Gravatar axel2007-02-01
* Add support for -s switch to read builtin, enables shell syntax highlighting ...Gravatar axel2007-01-30
* Drop unneeded generic descriptions for completion of functions and builtins. ...Gravatar axel2007-01-27
* Make all error messages from options parsin in builtins redirectableGravatar axel2007-01-22
* Make sure read returns with a non-zero status if no string was actually givenGravatar axel2007-01-16
* Fix typo in user message, remove a few warnings, minor indentation editsGravatar axel2007-01-09
* Make the bg builtin check that all specified jobs exist before sending any of...Gravatar axel2007-01-09
* Two very minor code touch upsGravatar axel2007-01-08
* Allow the user to specify name of history file to use with the read builtinGravatar axel2007-01-07
* Code cleanup: Use a macro constant instead fo a literal for builtin exit codesGravatar axel2006-12-14
* Update functions builtin so that default behaviour when not given any argumen...Gravatar axel2006-12-14
* Update documentation display code to run roff on the client system instead of...Gravatar axel2006-11-18
* Add a bugreport function for writing out a message about how to file bug reportsGravatar axel2006-11-18
* Minor editsGravatar axel2006-10-29
* Make the fish manpage in Doxygen and add it to the main fish documentationGravatar axel2006-10-26
* Use bitset to implement flags for jobs instead of wasting a whole int for eve...Gravatar axel2006-10-26
* If the builtin help won't fit on-screen, and it can't be shortened, don't pri...Gravatar axel2006-10-26
* Remove the --key-binding switch for fishGravatar axel2006-10-26
* Drop switch for saving of functions to file from the function builtinGravatar axel2006-10-25
* Make any character except '/' legal in function namesGravatar axel2006-10-20
* Minor code fixesGravatar axel2006-10-20
* First stab at directory transition. Test with care...Gravatar axel2006-10-19
* Be more rigorous with the exit codes set by the parser and builtinsGravatar axel2006-10-09
* Drop the optional checking of block type for the end builtinGravatar axel2006-10-05
* Minor code cleanupGravatar axel2006-10-05
* Add the possibility to set the cursor position using the commandline builtinGravatar axel2006-10-05
* Minor tweaks to code validation for the for builtin (again)Gravatar axel2006-10-02
* Add syntax check to see that the for builtin is not given an insufficient num...Gravatar axel2006-09-26
* Fix bug in for that causes crash on syntax errorGravatar axel2006-09-20
* Minor bugfix in the switch parsing for the status builitnGravatar axel2006-09-20
* Make it possible to save a function when defining it using the -S switchGravatar axel2006-09-09
* Optionally add type of block to the end builtin to verify block nesting corre...Gravatar axel2006-09-06
* Fix bug where using the return builtin inside an if-block could cause the els...Gravatar axel2006-09-01
* Minor code tweaks, mostly things like indentation, but also a ferw code reord...Gravatar axel2006-08-28
* Rearrange includes so that config.h is always the first file to be includedGravatar axel2006-08-11
* Use the new array_list functions in builtin.cGravatar axel2006-08-01
* Remove translate.c. The gettext fallback functionality is moved to fallback.c...Gravatar axel2006-07-20
* Add -q/--query switch to the functions builtin. Works just like the same swit...Gravatar axel2006-07-13