Age | Commit message (Expand) | Author | Files | Lines |
2012-11-15 | changed save point file pattern to .teco-xxx-ddd | Robin Haberkorn | 2 | -2/+2 |
2012-11-15 | replaced remaining editor_msg() references with new Interface::ssm() | Robin Haberkorn | 1 | -10/+11 |
2012-11-15 | added Interface class to ease porting SciTECO to other platforms (toolkits) | Robin Haberkorn | 11 | -307/+452 |
2012-11-15 | let Git ignore save point files | Robin Haberkorn | 1 | -0/+2 |
2012-11-15 | simplified popup type to gtk type mapping | Robin Haberkorn | 1 | -11/+7 |
2012-11-14 | minor comment fix | Robin Haberkorn | 1 | -1/+1 |
2012-11-14 | default teco ini file | Robin Haberkorn | 1 | -0/+5 |
2012-11-14 | error checking and colon modifier support for lots of commands | Robin Haberkorn | 3 | -45/+165 |
2012-11-14 | expressions.find_op(), can be used test whether we are in a loop (although th... | Robin Haberkorn | 2 | -0/+14 |
2012-11-14 | simplified move_lines() a bit | Robin Haberkorn | 1 | -2/+1 |
2012-11-14 | support rubout for EW command: if in undo mode, a save point is created so th... | Robin Haberkorn | 2 | -15/+133 |
2012-11-13 | EF command to close a buffer | Robin Haberkorn | 3 | -4/+54 |
2012-11-13 | <n>W, <n>V, <n>Y commands | Robin Haberkorn | 2 | -0/+57 |
2012-11-13 | support differen EOL modes | Robin Haberkorn | 1 | -8/+17 |
2012-11-13 | minor simplification | Robin Haberkorn | 1 | -1/+1 |
2012-11-13 | when autocompleting, highlight files that are already in the buffer | Robin Haberkorn | 1 | -4/+10 |
2012-11-13 | try to canonicalize paths to non-existent files | Robin Haberkorn | 2 | -9/+25 |
2012-11-13 | added EW...$ command | Robin Haberkorn | 4 | -22/+113 |
2012-11-13 | reset dot on search failure | Robin Haberkorn | 1 | -5/+6 |
2012-11-13 | support :S...$ command | Robin Haberkorn | 1 | -0/+3 |
2012-11-13 | added support for string match characters (match spec to regexp compiler) | Robin Haberkorn | 4 | -5/+254 |
2012-11-13 | fixed undoing of setting Q-Register string | Robin Haberkorn | 3 | -7/+20 |
2012-11-13 | Search command: use clever circular stack for the last (-n) matches for n < 0... | Robin Haberkorn | 1 | -11/+9 |
2012-11-13 | when doing a reverse search, allocate array of matches (since it can currentl... | Robin Haberkorn | 1 | -1/+3 |
2012-11-13 | <x[,y]>S...$ command (only regexp searching at the moment) | Robin Haberkorn | 4 | -3/+153 |
2012-11-12 | distinguish between GOTO, LOOP and CONDITIONAL parse-only modes: fixes loop b... | Robin Haberkorn | 3 | -18/+28 |
2012-11-12 | allow munged macros to quit and echo messages on stdout/stderr | Robin Haberkorn | 1 | -2/+21 |
2012-11-12 | fix: process @ modifier in PARSE_ONLY mode; fixes alternate string escapes in... | Robin Haberkorn | 1 | -1/+4 |
2012-11-12 | various arithmetic expression fixes: SUB must have higher precedence than ADD... | Robin Haberkorn | 3 | -11/+11 |
2012-11-11 | <x,y>Xq command, automatic profile munging, explicit munging, commandline opt... | Robin Haberkorn | 5 | -1/+130 |
2012-11-11 | automatic support for string building characters | Robin Haberkorn | 2 | -10/+135 |
2012-11-11 | fixed positioning after changing the current buffer | Robin Haberkorn | 1 | -17/+28 |
2012-11-11 | added <n>O...$ GOTO command | Robin Haberkorn | 3 | -2/+40 |
2012-11-11 | implemented conditionals (<n>"x...|...') | Robin Haberkorn | 2 | -0/+91 |
2012-11-11 | implemented F<, F>, F' and F| (flow) commands | Robin Haberkorn | 3 | -4/+93 |
2012-11-11 | support for Qx, Ux, %x and Mx commands | Robin Haberkorn | 3 | -11/+129 |
2012-11-11 | DEBUG support for printing state change undo tokens | Robin Haberkorn | 1 | -0/+8 |
2012-11-11 | use DEBUG macro | Robin Haberkorn | 1 | -0/+2 |
2012-11-11 | ^Ux...$ command: rubout does not yet work properly | Robin Haberkorn | 3 | -13/+75 |
2012-11-11 | support EQx<filename>$ command: load filename into Q register without changin... | Robin Haberkorn | 3 | -12/+60 |
2012-11-11 | Q-Register table and EQx command | Robin Haberkorn | 6 | -6/+188 |
2012-11-11 | dump goto table only in DEBUG mode | Robin Haberkorn | 1 | -0/+6 |
2012-11-11 | RBTree class (wrapper around BSD macros) - use for Goto table | Robin Haberkorn | 4 | -37/+298 |
2012-11-10 | use namespace "States" instead of "states" structure | Robin Haberkorn | 7 | -41/+60 |
2012-11-10 | use namespace for Modifiers instead of structure | Robin Haberkorn | 1 | -14/+14 |
2012-11-10 | support 0EB...$ command | Robin Haberkorn | 2 | -2/+35 |
2012-11-10 | ensure that string argument done() handlers never get a NULL pointer | Robin Haberkorn | 1 | -1/+1 |
2012-11-10 | support filename highlighting in GtkInfoPopup | Robin Haberkorn | 2 | -3/+16 |
2012-11-10 | filename autocompletion using <CTRL/T> and <TAB> | Robin Haberkorn | 10 | -13/+313 |
2012-11-08 | support globbing in EB...$ to support opening multiple files at once | Robin Haberkorn | 2 | -6/+55 |