summaryrefslogtreecommitdiff
path: root/editors/vi.c
Commit message (Expand)AuthorAgeFilesLines
* *: style fixDenys Vlasenko2022-08-301-1/+1
* vi: add 'ZQ' quitting commandGrob Grobmann2022-08-021-1/+7
* vi: handle autoindent in 'cc' commandRon Yorston2022-06-261-24/+47
* vi: fix regression in autoindent handlingRon Yorston2022-06-261-1/+7
* vi: fix backspace over tab in commandsRon Yorston2022-04-201-1/+2
* vi: improved handling of backspace in replace modeRon Yorston2022-03-041-6/+18
* ash,hush: fix handling of SIGINT while waiting for interactive inputDenys Vlasenko2022-01-171-2/+2
* vi: further changes to colon addressesRon Yorston2021-08-291-49/+83
* vi: code shrink print_literal()Ron Yorston2021-08-221-17/+2
* vi: searches in colon commands should wrapRon Yorston2021-08-221-2/+7
* vi: don't right shift empty linesRon Yorston2021-08-201-2/+2
* vi: support ~/.exrcRon Yorston2021-08-201-8/+33
* vi: changes to handling of -c and EXINITRon Yorston2021-08-201-58/+65
* vi: fix compile-time error if !ENABLE_FEATURE_VI_SETOPTSDenys Vlasenko2021-08-161-0/+1
* vi: remove redundant assignmentDenys Vlasenko2021-07-141-1/+0
* vi: fix regex search compilation errorRon Yorston2021-07-131-1/+1
* vi: somewhat more readable code, no logic changesDenys Vlasenko2021-07-131-8/+9
* vi: allow delimiter in ':s' to be escapedRon Yorston2021-07-131-2/+17
* vi: allow regular expressions in ':s' commandsDenys Vlasenko2021-07-131-15/+116
* vi: improve handling of anchored searchesRon Yorston2021-07-131-0/+2
* vi: use basic regular expressions for searchRon Yorston2021-07-131-2/+2
* vi: allow 'gg' to specify a rangeRon Yorston2021-07-131-1/+2
* vi: stored search pattern applies to ':s'Ron Yorston2021-06-271-0/+12
* vi: fix read outside of text buffer during insertS Harris2021-06-231-1/+1
* vi: fix backward search with GNU regexRon Yorston2021-06-211-20/+13
* vi: reject change command when motion failsRon Yorston2021-06-161-1/+12
* vi: up/down motion beyond end of file should failRon Yorston2021-06-161-25/+38
* vi: keep autoindent if line isn't emptyRon Yorston2021-06-161-1/+1
* vi: initialise tabstop once not for each fileRon Yorston2021-06-141-1/+1
* vi: ':r' should insert text after current lineRon Yorston2021-06-141-5/+3
* *: --help tweaksDenys Vlasenko2021-06-131-2/+7
* vi: remove autoindent from otherwise empty linesRon Yorston2021-06-021-26/+59
* vi: make autoindent respect expandtab settingRon Yorston2021-06-021-13/+19
* vi: make cursor positioning more vi compatibleRon Yorston2021-06-021-0/+4
* vi: :wq/:x should warn if there are more files to editRon Yorston2021-05-041-3/+14
* vi: cursor positioning after whole-line 'y'Ron Yorston2021-05-041-17/+8
* vi: trivial code shrinkDenys Vlasenko2021-05-011-2/+2
* vi: fix empty line range regressionRon Yorston2021-04-301-1/+1
* vi: expand '%' and '#' in colon commandsRon Yorston2021-04-281-14/+112
* vi: fix buffer overrun; code shrinkRon Yorston2021-04-281-31/+22
* vi: improvements to ':read' commandRon Yorston2021-04-281-13/+17
* vi: preserve state when switching fileRon Yorston2021-04-281-2/+0
* vi: 'ZZ' should warn if there are more files to editRon Yorston2021-04-281-0/+8
* vi: saving unnamed file in readonly modeRon Yorston2021-04-281-2/+2
* vi: adjust conditional compilation of modifying_cmdsRon Yorston2021-04-281-1/+1
* vi: changes to line addresses for colon commandsRon Yorston2021-04-281-50/+60
* vi: make de-indentation with ctrl-D more like vimRon Yorston2021-04-201-9/+21
* vi: add expandtab optionRon Yorston2021-04-201-17/+47
* vi: move undo_queue_state in globals to other byte-sized membersDenys Vlasenko2021-04-151-13/+14
* vi: allow line addresses to have an offsetRon Yorston2021-04-151-46/+72