aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.cpp
Commit message (Collapse)AuthorAge
* Revert "Merge pull request #1317 from pullreq/cpp"Gravatar ridiculousfish2014-02-28
| | | | | | | This reverts commit 74135c0600d5dcc40d396d0e7293c17b8d4bdaa7, reversing changes made to 6d749789ce240a3e6f1447777db63fd8e7525560. See discussion in #1317
* Fixes .c -> .cpp in comments. For doxygen.Gravatar Geoff Nixon2014-02-27
|
* Test and fix issue where, if binding X is a prefix of binding Y, and XGravatar ridiculousfish2014-02-12
| | | | | | | is specified before Y, then Y will never be invoked because X will always get there first. Now instead we order bindings in descending order by length, so that we always test the binding before any others that prefixes it. Fixes #1283.
* Make if statements always return success at the end, matching otherGravatar ridiculousfish2014-02-07
| | | | shells. Fixes #1061.
* Increased support for completion search field. Use btab (shift-tab) toGravatar ridiculousfish2014-01-27
| | | | complete-and-search.
* Update style and formatting to conform to fish style guide.Gravatar ridiculousfish2014-01-15
|
* Fix for issue where unterminated quotes would attempt to be executed,Gravatar ridiculousfish2014-01-14
| | | | instead of continuing edit onto the next line.
* Eliminate class parse_tGravatar ridiculousfish2014-01-12
|
* Improvements to error messages with new parser. In particular, "nakedGravatar ridiculousfish2014-01-12
| | | | builtins" now print their help (e.g. just 'while')
* Miscellaneous minor fixes based on cppcheck static analyzerGravatar ridiculousfish2014-01-12
|
* Rename builtin parse to __fish_parseGravatar ridiculousfish2014-01-08
|
* Miscellaneous optimizations to reduce string copyingGravatar ridiculousfish2014-01-07
|
* Support for stack overflow and infinite recursion detection in newGravatar ridiculousfish2014-01-01
| | | | parser
* Bringup of function definitions, switch statements with new parserGravatar ridiculousfish2013-12-27
|
* Hook up for statements, if statements, and function definition in newGravatar ridiculousfish2013-12-27
| | | | parser
* Merge branch 'master' into astGravatar ridiculousfish2013-12-20
|\ | | | | | | | | | | | | Conflicts: function.cpp parser.cpp parser.h
| * Refactor block_t storage in parser_t from a linked list to a vectorGravatar ridiculousfish2013-12-20
| |
* | Stop using realpath() in builtin_source, so as to preserve relative pathGravatar ridiculousfish2013-12-15
| | | | | | | | reporting in backtraces
* | Make builtin_parse output to stdoutGravatar ridiculousfish2013-12-12
| |
* | Better support for parse errors in indentingGravatar ridiculousfish2013-12-08
| |
* | Merge branch 'master' into astGravatar ridiculousfish2013-10-27
|\| | | | | | | | | Conflicts: complete.cpp
| * Fix formattingGravatar ridiculousfish2013-10-26
| |
* | Merge branch 'master' into astGravatar ridiculousfish2013-10-16
|\| | | | | | | | | Conflicts: parse_util.cpp
| * Fix #213. You can now remove autoloaded functions.Gravatar Konrad Borowski2013-10-12
| | | | | | | | Oddly enough, the code is here, but is internal function.
* | Make parse_t::parse a static method so we don't have to create lots ofGravatar ridiculousfish2013-10-12
| | | | | | | | useless parse_t objects
| * Escape characters in function names. Fixes #1031.Gravatar Konrad Borowski2013-10-09
| |
* | Remove parse_exec stuffGravatar ridiculousfish2013-10-08
| |
* | Merge branch 'master' into ast_no_templatesGravatar ridiculousfish2013-10-06
|\| | | | | | | | | | | Conflicts: configure.ac exec.cpp
| * Refactored builtin_echo with better argument parsing.Gravatar Alex Charron2013-09-22
| |
| * Deprecate "." command. Fixes #310.Gravatar Konrad Borowski2013-08-14
| | | | | | | | | | Needs documentation (for the new name), but manages to move . to source, while preserving compatibility.
* | More work on new parserGravatar ridiculousfish2013-08-11
| |
* | More work on new parserGravatar ridiculousfish2013-08-08
| |
* | Improvements to new parser. All functions and completions now parse.Gravatar ridiculousfish2013-07-22
| |
* | Merge branch 'master' into ast_templatesGravatar ridiculousfish2013-07-21
|\| | | | | | | | | Conflicts: fish_tests.cpp
| * Initial abbreviation work. Tests currently fail.Gravatar ridiculousfish2013-07-19
| |
| * Use \x1B instead of \e.Gravatar Konrad Borowski2013-07-16
| |
* | Implement support for switchGravatar ridiculousfish2013-06-30
| |
* | More work on the AST. block statements worked out a bit more.Gravatar ridiculousfish2013-06-24
| |
* | Beginning support for new parser error messagesGravatar ridiculousfish2013-06-15
| |
* | Added parse builtin for testing. Lots of work on simulated execution.Gravatar ridiculousfish2013-06-15
|/
* Formatting and style updatesGravatar ridiculousfish2013-05-05
|
* Formatting cleanup of builtin_containsGravatar ridiculousfish2013-04-28
|
* Eliminate a static string from input_terminfo_get_sequenceGravatar ridiculousfish2013-04-15
|
* Reduce compiled code size a bitGravatar ridiculousfish2013-04-13
|
* Teach fish how to push and pop blocks even in the face of no_exec. All tests ↵Gravatar ridiculousfish2013-03-25
| | | | | | finally pass. https://github.com/fish-shell/fish-shell/issues/624
* Initial version of printf builtinGravatar Siteshwar Vashisht2013-03-02
|
* First round of fixes based on cppcheckGravatar ridiculousfish2013-02-16
| | | | https://github.com/fish-shell/fish-shell/issues/575
* First stab at builtin set_color. Moved set_color.cpp to ↵Gravatar ridiculousfish2013-02-14
| | | | builtin_set_color.cpp and taught fish about it.
* merge branch 'bug-537' and branch 'bug-read-ctrlC'. This should fix both ↵Gravatar Jan Kanis2013-02-05
|\ | | | | | | #537 and #516
* | Make subcommands modify $status, and make builtin_set not modify status ↵Gravatar ridiculousfish2013-01-31
| | | | | | | | | | | | | | unless it fails https://github.com/fish-shell/fish-shell/issues/547 https://github.com/fish-shell/fish-shell/issues/214