summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-09-01patch 7.4.849v7.4.849Bram Moolenaar
Problem: Moving the cursor in Insert mode starts new undo sequence. Solution: Add CTRL-G U to keep the undo sequence for the following cursor movement command. (Christian Brabandt)
2015-09-01patch 7.4.848v7.4.848Bram Moolenaar
Problem: CTRL-A on hex number in Visual block mode is incorrect. Solution: Account for the "0x". (Hirohito Higashi)
2015-09-01patch 7.4.847v7.4.847Bram Moolenaar
Problem: "vi)d" may leave a character behind. Solution: Skip over multi-byte character. (Christian Brabandt)
2015-09-01patch 7.4.846v7.4.846Bram Moolenaar
Problem: Some GitHub users don't know how to use issues. Solution: Add a file that explains the basics of contributing.
2015-09-01patch 7.4.845v7.4.845Bram Moolenaar
Problem: Compiler warning for possible loss of data. Solution: Add a type cast. (Erich Ritz)
2015-09-01patch 7.4.844v7.4.844Bram Moolenaar
Problem: When '#' is in 'isident' the is# comparator doesn't work. Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto)
2015-08-27patch 7.4.843v7.4.843Bram Moolenaar
Problem: Still possible to go beyond the end of a string. Solution: Check for NUL also in second string. (Dominique Pelle)
2015-08-27patch 7.4.842v7.4.842Bram Moolenaar
Problem: Sending too many messages to close the balloon. Solution: Only send a WM_CLOSE message. (Jurgen Kramer)
2015-08-26patch 7.4.841v7.4.841Bram Moolenaar
Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's.
2015-08-26patch 7.4.840v7.4.840Bram Moolenaar
Problem: Tooltip window stays open. Solution: Send a WM_CLOSE message. (Jurgen Kramer)
2015-08-26patch 7.4.839v7.4.839Bram Moolenaar
Problem: Compiler warning on 64-bit system. Solution: Add cast to int. (Mike Williams)
2015-08-25patch 7.4.838v7.4.838Bram Moolenaar
Problem: Can't compile without the crypt feature. (John Marriott) Solution: Add #ifdef.
2015-08-25Updated runtime files and Italian messages.Bram Moolenaar
2015-08-25patch 7.4.837v7.4.837Bram Moolenaar
Problem: Compiler warning with MSVC compiler when using +sniff. Solution: Use Sleep() instead of _sleep(). (Tux)
2015-08-25patch 7.4.836v7.4.836Bram Moolenaar
Problem: Accessing unitinialized memory. Solution: Add missing calls to init_tv(). (Dominique Pelle)
2015-08-25patch 7.4.835v7.4.835Bram Moolenaar
Problem: Comparing utf-8 sequences does not handle different byte sizes correctly. Solution: Get the byte size of each character. (Dominique Pelle)
2015-08-25patch 7.4.834v7.4.834Bram Moolenaar
Problem: gettabvar() doesn't work after Vim start. (Szymon Wrozynski) Solution: Handle first window in tab still being NULL. (Christian Brabandt)
2015-08-25patch 7.4.833v7.4.833Bram Moolenaar
Problem: More side effects of ":set all&" are missing. (Björn Linse) Solution: Call didset_options() and add didset_options2() to collect more side effects to take care of. Still not everything...
2015-08-25patch 7.4.832v7.4.832Bram Moolenaar
Problem: $HOME in is expanded too early. Solution: Skip over when expanding environment names.
2015-08-25patch 7.4.831v7.4.831Bram Moolenaar
Problem: When expanding on the command line and encountering an error, the command is executed anyway. Solution: Bail out when an error is detected.
2015-08-25patch 7.4.830v7.4.830Bram Moolenaar
Problem: Resetting 'encoding' when doing ":set all&" causes problems. (Bjorn Linse) Display is not updated. Solution: Do not reset 'encoding'. Do a full redraw.
2015-08-25patch 7.4.829v7.4.829Bram Moolenaar
Problem: Crash when clicking in beval balloon. (Travis Lebsock) Solution: Use PostMessage() instead of DestroyWindow(). (Raymond Ko, PR 298)
2015-08-25patch 7.4.828v7.4.828Bram Moolenaar
Problem: Crash when using "syn keyword x c". (Dominique Pelle) Solution: Initialize the keyword tabble. (Raymond Ko, PR 397)
2015-08-18patch 7.4.827v7.4.827Bram Moolenaar
Problem: Not all test targets are in the Makefile. Solution: Add the missing targets.
2015-08-13patch 7.4.826v7.4.826Bram Moolenaar
Problem: Compiler warnings and errors. Solution: Make it build properly without the multi-byte feature.
2015-08-13patch 7.4.825v7.4.825Bram Moolenaar
Problem: Invalid memory access for ":syn keyword x a[". Solution: Do not skip over the NUL. (Dominique Pelle)
2015-08-12patch 7.4.824v7.4.824Bram Moolenaar
Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add #ifdef.
2015-08-11Update runtime files.Bram Moolenaar
2015-08-11patch 7.4.823v7.4.823Bram Moolenaar
Problem: Cursor moves after CTRL-A on alphabetic character. Solution: (Hirohito Higashi, test by Christian Brabandt)
2015-08-11patch 7.4.822v7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
2015-08-11patch 7.4.821v7.4.821Bram Moolenaar
Problem: Coverity reports a few problems. Solution: Avoid the warnings. (Christian Brabandt)
2015-08-11patch 7.4.820v7.4.820Bram Moolenaar
Problem: Invalid memory access in file_pat_to_reg_pat. Solution: Avoid looking before the start of a string. (Dominique Pelle)
2015-08-11patch 7.4.819v7.4.819Bram Moolenaar
Problem: Beeping when running the tests. Solution: Fix 41 beeps. (Roland Eggner)
2015-08-11patch 7.4.818v7.4.818Bram Moolenaar
Problem: 'linebreak' breaks c% if the last Visual selection was block. (Chris Morganiser, Issue 389) Solution: Handle Visual block mode differently. (Christian Brabandt)
2015-08-11patch 7.4.817v7.4.817Bram Moolenaar
Problem: Invalid memory access in file_pat_to_reg_pat(). Solution: Use vim_isspace() instead of checking for a space only. (Dominique Pelle)
2015-08-11patch 7.4.816v7.4.816Bram Moolenaar
Problem: Invalid memory access when doing ":fun X(". Solution: Check for missing ')'. (Dominique Pelle)
2015-08-11patch 7.4.815v7.4.815Bram Moolenaar
Problem: Invalid memory access when doing ":call g:". Solution: Check for an empty name. (Dominique Pelle)
2015-08-11patch 7.4.814v7.4.814Bram Moolenaar
Problem: Illegal memory access with "sy match a fold". Solution: Check for empty string. (Dominique Pelle)
2015-08-11patch 7.4.813v7.4.813Bram Moolenaar
Problem: It is not possible to save and restore character search state. Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
2015-08-08patch 7.4.812v7.4.812Bram Moolenaar
Problem: Gcc sanitizer complains about using a NULL pointer to memmove(). Solution: Only call memmove when there is something to move. (Vittorio Zecca)
2015-08-04patch 7.4.811v7.4.811Bram Moolenaar
Problem: Invalid memory access when using "exe 'sc'". Solution: Avoid going over the end of the string. (Dominique Pelle)
2015-08-04patch 7.4.810v7.4.810Bram Moolenaar
Problem: With a sequence of commands using buffers in diff mode E749 is given. (itchyny) Solution: Skip unloaded buffer. (Hirohito Higashi)
2015-08-04patch 7.4.809v7.4.809Bram Moolenaar
Problem: Test is duplicated. Solution: Roll back 7.4.802.
2015-08-04patch 7.4.808v7.4.808Bram Moolenaar
Problem: On MS-Windows 8 IME input doen't work correctly. Solution: Read console input before calling MsgWaitForMultipleObjects(). (vim-jp, Nobuhiro Takasaki)
2015-08-04patch 7.4.807v7.4.807Bram Moolenaar
Problem: After CTRL-V CTRL-A mode isn't updated. (Hirohito Higashi) Solution: Clear the command line or update the displayed command.
2015-08-04patch 7.4.806v7.4.806Bram Moolenaar
Problem: CTRL-A in Visual mode doesn't work properly with "alpha" in 'nrformat'. Solution: Make it work. (Christian Brabandt)
2015-08-04patch 7.4.805v7.4.805Bram Moolenaar
Problem: The ruler shows "Bot" even when there are only filler lines missing. (Gary Johnson) Solution: Use "All" when the first line and one filler line are visible.
2015-08-04patch 7.4.804v7.4.804Bram Moolenaar
Problem: Xxd doesn't have a license notice. Solution: Add license as indicated by Juergen.
2015-07-28patch 7.4.803v7.4.803Bram Moolenaar
Problem: C indent does not support C11 raw strings. (Mark Lodato) Solution: Do not change indent inside the raw string.
2015-07-28patch 7.4.802v7.4.802Bram Moolenaar
Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. Solution: Add a test for this, verifies the problem is fixed. (Ingo Karkat)