summaryrefslogtreecommitdiff
path: root/editors
AgeCommit message (Expand)Author
2021-07-02awk: use "static" tmpvars in main and exitDenys Vlasenko
2021-07-02awk: when parsing length(), simplify eating of LPARENDenys Vlasenko
2021-07-02awk: shuffle functions to reduce forward declarations, no code changesDenys Vlasenko
2021-07-01awk: use static tmpvars instead of nvalloc(1)ed onesDenys Vlasenko
2021-07-01awk: rename temp variables, no code changesDenys Vlasenko
2021-06-30awk: evaluate all, even superfluous function argsDenys Vlasenko
2021-06-30awk: rewrite "print" logic a bit to make it clearerDenys Vlasenko
2021-06-30awk: allow empty fuinctions with no arguments, disallow function redefinitionsDenys Vlasenko
2021-06-30awk: replace incorrect use of union in undefined function check (no code chan...Denys Vlasenko
2021-06-30awk: remove custom pool allocator for temporary awk variablesDenys Vlasenko
2021-06-29awk: assorted optimizationsDenys Vlasenko
2021-06-29awk: free unused parsing structures after parse is doneDenys Vlasenko
2021-06-29awk: document which hashes are used at what state (parse/execute)Denys Vlasenko
2021-06-29awk: fix parsing of expressions such as "v (a)"Denys Vlasenko
2021-06-29awk: deindent a block, no code changesDenys Vlasenko
2021-06-29awk: code shrinkDenys Vlasenko
2021-06-29awk: get rid of "move name one char back" trick in next_token()Denys Vlasenko
2021-06-29awk: when parsing TC_FUNCTION token, eat its opening '('Denys Vlasenko
2021-06-29awk: g_buf[] does not need a separate allocationDenys Vlasenko
2021-06-29awk: simplify parsing of function declarationDenys Vlasenko
2021-06-29awk: rename TC_SEQSTART/END to L/RPAREN, no code changesDenys Vlasenko
2021-06-29awk: deindent code block, no code changesDenys Vlasenko
2021-06-29awk: use TS_foo for combined token classes. No code changesDenys Vlasenko
2021-06-29awk: make ltclass ("last token class") local to next_token()Denys Vlasenko
2021-06-29awk: remove redundant checkDenys Vlasenko
2021-06-27vi: stored search pattern applies to ':s'Ron Yorston
2021-06-25awk: move locals deeper into scopes where they are used, no logic changesDenys Vlasenko
2021-06-25awk: more efficient -f FILE, document what "some trick in next_token" isDenys Vlasenko
2021-06-23vi: fix read outside of text buffer during insertS Harris
2021-06-21vi: fix backward search with GNU regexRon Yorston
2021-06-20qwk: make code clearer, no actual code changesDenys Vlasenko
2021-06-18awk: after preinc/dec, only allow variable, field ref, array ref, or another ...Denys Vlasenko
2021-06-16vi: reject change command when motion failsRon Yorston
2021-06-16vi: up/down motion beyond end of file should failRon Yorston
2021-06-16vi: keep autoindent if line isn't emptyRon Yorston
2021-06-16awk: fix use-after-free in "$BIGNUM1 $BIGGERNUM2" concat opDenys Vlasenko
2021-06-14vi: initialise tabstop once not for each fileRon Yorston
2021-06-14vi: ':r' should insert text after current lineRon Yorston
2021-06-14*: --help tweaksDenys Vlasenko
2021-06-13*: --help tweaksDenys Vlasenko
2021-06-02vi: remove autoindent from otherwise empty linesRon Yorston
2021-06-02vi: make autoindent respect expandtab settingRon Yorston
2021-06-02vi: make cursor positioning more vi compatibleRon Yorston
2021-05-04vi: :wq/:x should warn if there are more files to editRon Yorston
2021-05-04vi: cursor positioning after whole-line 'y'Ron Yorston
2021-05-01vi: trivial code shrinkDenys Vlasenko
2021-04-30vi: fix empty line range regressionRon Yorston
2021-04-28vi: expand '%' and '#' in colon commandsRon Yorston
2021-04-28vi: fix buffer overrun; code shrinkRon Yorston
2021-04-28vi: improvements to ':read' commandRon Yorston