aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2012-11-08support globbing in EB...$ to support opening multiple files at onceRobin Haberkorn2-6/+55
2012-11-08added commentsRobin Haberkorn2-0/+8
2012-11-08added buffer ring and preliminary EB...$ implementationRobin Haberkorn6-6/+277
* undoing supported * does not yet support globbing
2012-11-08set UndoToken position only when it is required (undo enabled)Robin Haberkorn2-22/+12
2012-11-08EX commandRobin Haberkorn4-1/+40
2012-11-08insert (I) and <TAB> commands implementedRobin Haberkorn2-2/+132
* StateExpectString does not yet handle string building chars
2012-11-08add form feed to list of whitespace charactersRobin Haberkorn1-1/+1
2012-11-08support line termination ($$) as immediate editing command + some fixesRobin Haberkorn6-19/+66
* separate function for immediate editing command processing * undo.clear() to remove and free all undo tokens without executing them * goto_table_clear() to remove and free all goto table entries
2012-11-08added <CNTRL/x> and ^x commandsRobin Haberkorn2-8/+88
2012-11-08added missing transition table initialization for label stateRobin Haberkorn2-0/+8
2012-11-08added support for labels, including the goto label tableRobin Haberkorn8-14/+272
* uses BSD tree macros, might later be abstracted to a C++ table class
2012-11-07additional commands implementedRobin Haberkorn3-4/+214
2012-11-07undo stack enable/disable, parse-only mode, colon modifiers evaluationRobin Haberkorn4-14/+79
2012-11-07let compiler check printf-like argumentsRobin Haberkorn1-1/+2
2012-11-07add helper function to initialize transition tableRobin Haberkorn2-5/+14
2012-11-07check bounds when accessing the transitions tableRobin Haberkorn2-13/+16
2012-11-07make some Expression methods privateRobin Haberkorn1-5/+7
2012-11-07simplified/cleaned up undo operations on value stackRobin Haberkorn2-39/+48
* special undo tokens are private to the ValueStack class and automatically parameterized * undo_push() and undo_pop() methods hide the internals of pushing the undo tokens
2012-11-07fixed "," operatorRobin Haberkorn3-32/+27
instead of pushing a special number (which wasn't that special...), use a dedicated "new" operator which does not count as an argument operator, nor does it count as an ordinary operator and it is popped before any number (and "number" operator) is pushed
2012-11-07fixed "-" processing and improved C command, added R commandRobin Haberkorn4-7/+19
2012-11-07expression stack fixes and some arithmetic commandsRobin Haberkorn3-13/+75
2012-11-07expression stack based on THECO's ArithmeticStackRobin Haberkorn6-6/+355
2012-11-06initial commit of SciTECO based on THECORobin Haberkorn9-0/+593