summaryrefslogtreecommitdiff
path: root/src/normal.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.2182: Vim9: value of 'magic' is still relevantv8.2.2182Bram Moolenaar2020-12-211-2/+2
* patch 8.2.2160: various typosv8.2.2160Bram Moolenaar2020-12-181-1/+1
* patch 8.2.2128: there is no way to do something on CTRL-Zv8.2.2128Bram Moolenaar2020-12-111-1/+1
* patch 8.2.2084: CTRL-V U doesn't work to enter a Unicode characterv8.2.2084Bram Moolenaar2020-12-031-2/+2
* patch 8.2.2057: getting the selection may trigger TextYankPost autocmdv8.2.2057Bram Moolenaar2020-11-261-0/+32
* patch 8.2.1978: making a mapping work in all modes is complicatedv8.2.1978Bram Moolenaar2020-11-121-5/+7
* patch 8.2.1919: assert_fails() setting emsg_silent changes normal executionv8.2.1919Bram Moolenaar2020-10-281-0/+1
* patch 8.2.1637: Vim9: :put ={expr} does not work inside :def functionv8.2.1637Bram Moolenaar2020-09-081-2/+2
* patch 8.2.1595: cannot easily see what Vim sends to the terminalv8.2.1595Bram Moolenaar2020-09-051-0/+6
* patch 8.2.1549: "r" fails if 'esckeys' is off and modifyOtherKeys is usedv8.2.1549Bram Moolenaar2020-08-301-0/+14
* patch 8.2.1520: Vim9: CTRL-] used in :def function does not workv8.2.1520Bram Moolenaar2020-08-231-1/+3
* patch 8.2.1401: cannot jump to the last used tabpagev8.2.1401Bram Moolenaar2020-08-091-1/+12
* patch 8.2.1258: CursorHold does not work wellv8.2.1258Bram Moolenaar2020-07-201-1/+6
* patch 8.2.1253: CTRL-K in Insert mode gets <CursorHold> insertedv8.2.1253Bram Moolenaar2020-07-191-1/+2
* patch 8.2.0929: v:register is not cleared after an operator was executedv8.2.0929Bram Moolenaar2020-06-071-0/+5
* patch 8.2.0913: code for resetting v:register is duplicatedv8.2.0913Bram Moolenaar2020-06-061-10/+1
* patch 8.2.0853: ml_delete() often called with FALSE argumentv8.2.0853Bram Moolenaar2020-05-301-1/+1
* patch 8.2.0849: BeOS code is not maintained and probably unusedv8.2.0849Bram Moolenaar2020-05-301-8/+0
* patch 8.2.0839: dropping modifier when putting a character back in typeaheadv8.2.0839Bram Moolenaar2020-05-291-1/+1
* patch 8.2.0743: can move to another buffer from a terminal in popup windowv8.2.0743Bram Moolenaar2020-05-121-0/+4
* patch 8.2.0559: clearing a struct is verbosev8.2.0559Bram Moolenaar2020-04-121-3/+3
* patch 8.2.0397: delayed screen update when using undo from Insert modev8.2.0397Bram Moolenaar2020-03-161-2/+7
* patch 8.2.0295: highlighting for :s wrong when using different separatorv8.2.0295Bram Moolenaar2020-02-211-1/+1
* patch 8.2.0156: various typos in source files and testsv8.2.0156Bram Moolenaar2020-01-261-1/+1
* patch 8.1.2392: using old C style commentsv8.1.2392Bram Moolenaar2019-12-051-614/+608
* patch 8.1.2377: GUI: when losing focus a pending operator is executedv8.1.2377Bram Moolenaar2019-12-011-2/+3
* patch 8.1.2313: debugging where a delay comes from is not easyv8.1.2313Bram Moolenaar2019-11-171-2/+2
* patch 8.1.2281: 'showbreak' cannot be set for one windowv8.1.2281Bram Moolenaar2019-11-091-2/+5
* patch 8.1.2237: mode() result depends on whether CURSOR_SHAPE is definedv8.1.2237Bram Moolenaar2019-10-311-4/+2
* patch 8.1.2233: cannot get the Vim command line argumentsv8.1.2233Bram Moolenaar2019-10-291-1/+1
* patch 8.1.2231: not easy to move to the middle of a text linev8.1.2231Bram Moolenaar2019-10-281-0/+18
* patch 8.1.2173: searchit() has too many argumentsv8.1.2173Bram Moolenaar2019-10-181-10/+16
* patch 8.1.2171: mouse support not always availablev8.1.2171Bram Moolenaar2019-10-171-14/+2
* patch 8.1.2140: "gk" and "gj" do not work correctly in number columnv8.1.2140Bram Moolenaar2019-10-121-5/+12
* patch 8.1.2104: the normal.c file is too bigv8.1.2104Bram Moolenaar2019-09-301-980/+13
* patch 8.1.2096: too many #ifdefsv8.1.2096Bram Moolenaar2019-09-281-6/+2
* patch 8.1.2072: "gk" moves to start of line instead of upwardsv8.1.2072Bram Moolenaar2019-09-241-2/+2
* patch 8.1.2062: the mouse code is spread outv8.1.2062Bram Moolenaar2019-09-211-1129/+4
* patch 8.1.2059: fix for "x" deleting a fold has side effectsv8.1.2059Bram Moolenaar2019-09-201-10/+4
* patch 8.1.2052: using "x" before a closed fold may delete that foldv8.1.2052Bram Moolenaar2019-09-171-3/+9
* patch 8.1.2018: using freed memory when out of memory and displaying messagev8.1.2018Bram Moolenaar2019-09-091-4/+9
* patch 8.1.1988: :startinsert! does not work the same way as "A"v8.1.1988Bram Moolenaar2019-09-051-13/+22
* patch 8.1.1890: ml_get error when deleting fold markerv8.1.1890Bram Moolenaar2019-08-191-1/+4
* patch 8.1.1862: Coverity warns for not using return valuev8.1.1862Bram Moolenaar2019-08-161-1/+1
* patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrarev8.1.1838Bram Moolenaar2019-08-111-1/+2
* patch 8.1.1823: command line history code is spread outv8.1.1823Bram Moolenaar2019-08-061-3/+3
* patch 8.1.1758: count of g$ not used correctly when text is not wrappedv8.1.1758Bram Moolenaar2019-07-271-1/+5
* patch 8.1.1658: debug statements included in patchv8.1.1658Bram Moolenaar2019-07-101-1/+0
* patch 8.1.1657: Terminal: screen updates from 'balloonexpr' are not displayedv8.1.1657Bram Moolenaar2019-07-091-26/+30
* patch 8.1.1645: cannot use a popup window for a balloonv8.1.1645Bram Moolenaar2019-07-071-0/+3