summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-06-17patch 8.0.0644: the timeout for 'hlsearch' is not testedv8.0.0644Bram Moolenaar
Problem: There is no test for 'hlsearch' timing out. Solution: Add a test.
2017-06-17patch 8.0.0643: when a pattern search is slow Vim becomes unusablev8.0.0643Bram Moolenaar
Problem: When 'hlsearch' is set and matching with the last search pattern is very slow, Vim becomes unusable. Cannot quit search by pressing CTRL-C. Solution: When the search times out set a flag and don't try again. Check for timeout and CTRL-C in NFA loop that adds states.
2017-06-13patch 8.0.0642: writefile() continues after detecting an errorv8.0.0642Bram Moolenaar
Problem: writefile() continues after detecting an error. Solution: Bail out as soon as an error is detected. (suggestions by Nikolai Pavlov, closes #1476)
2017-06-13Update runtime files.Bram Moolenaar
Includes changing &sw to shiftwidth() for all indent scripts.
2017-06-13patch 8.0.0641: cannot set a separate highlighting for the quickfix linev8.0.0641Bram Moolenaar
Problem: Cannot set a separate highlighting for the current line in the quickfix window. Solution: Add QuickFixLine. (anishsane, closes #1755)
2017-06-13patch 8.0.0640: mismatch between help and actual messagev8.0.0640Bram Moolenaar
Problem: Mismatch between help and actual message for ":syn conceal". Solution: Change the message to match the help. (Ken Takata)
2017-06-13patch 8.0.0639: the cursor position is set when editing a new commit messagev8.0.0639Bram Moolenaar
Problem: The cursor position is set to the last position in a new commit message. Solution: Don't set the position if the filetype matches "commit". (Christian Brabandt)
2017-06-13patch 8.0.0638: cannot build with new MSVC versionv8.0.0638Bram Moolenaar
Problem: Cannot build with new MSVC version VS2017. Solution: Change the compiler arguments. (Leonardo Manera, closes #1731, closes #1747)
2017-06-13patch 8.0.0637: crash when using some version of GTK 3v8.0.0637Bram Moolenaar
Problem: Crash when using some version of GTK 3. Solution: Add #ifdefs around incrementing the menu index. (Kazunobu Kuriyama)
2017-06-11patch 8.0.0636: when reading the undo file fails may use uninitialized datav8.0.0636Bram Moolenaar
Problem: When reading the undo file fails may use uninitialized data. Solution: Always clear the buffer on failure.
2017-06-11patch 8.0.0635: when 'ignorecase' is set script detection is inaccuratev8.0.0635Bram Moolenaar
Problem: When 'ignorecase' is set script detection is inaccurate. Solution: Enforce matching case for text. (closes #1753)
2017-06-11patch 8.0.0634: cannot easily get to the last quickfix listv8.0.0634Bram Moolenaar
Problem: Cannot easily get to the last quickfix list. Solution: Add "$" as a value for the "nr" argument of getqflist() and setqflist(). (Yegappan Lakshmanan)
2017-06-10patch 8.0.0633: the client-server test is still a bit flakyv8.0.0633Bram Moolenaar
Problem: The client-server test is still a bit flaky. Solution: Wait a bit for the GUI to start. Check that the version number can be obtained.
2017-06-10patch 8.0.0632: the quotestar test is still a bit flakyv8.0.0632Bram Moolenaar
Problem: The quotestar test is still a bit flaky. Solution: Kill any existing server to make the retry work. Wait for the register to be filled.
2017-06-10patch 8.0.0631: can't build with Perl 5.26v8.0.0631Bram Moolenaar
Problem: Perl 5.26 also needs S_TOPMARK and S_POPMARK defined. Solution: Define the functions when needed. (Jesin, closes #1748)
2017-06-10patch 8.0.0630: it is not easy to work on lines without a matchv8.0.0630Bram Moolenaar
Problem: The :global command does not work recursively, which makes it difficult to execute a command on a line where one pattern matches and another does not match. (Miles Cranmer) Solution: Allow for recursion if it is for only one line. (closes #1760)
2017-06-09patch 8.0.0629: checking for ambigous width is not workingv8.0.0629Bram Moolenaar
Problem: Checking for ambigous width is not working. (Hirohito Higashi) Solution: Reset "starting" earlier.
2017-06-07patch 8.0.0628: cursor disappears after silent mappingv8.0.0628Bram Moolenaar
Problem: Cursor disappears after silent mapping. (Ramel Eshed) Solution: Do restore the cursor when it was changed, but don't change it in the first place for a silent mapping.
2017-06-05patch 8.0.0627: "gn" selects only one character with 'nowrapscan'v8.0.0627Bram Moolenaar
Problem: When 'wrapscan' is off "gn" does not select the whole pattern when it's the last one in the text. (KeyboardFire) Solution: Check if the search fails. (Christian Brabandt, closes #1683)
2017-06-05patch 8.0.0626: in the GUI the cursor may flickerv8.0.0626Bram Moolenaar
Problem: In the GUI the cursor may flicker. Solution: Check the cmd_silent flag before updating the cursor shape. (Hirohito Higashi, closes #1637)
2017-06-05patch 8.0.0625: shellescape() always escapes a newlinev8.0.0625Bram Moolenaar
Problem: shellescape() always escapes a newline, which does not work with some shells. (Harm te Hennepe) Solution: Only escape a newline when the "special" argument is non-zero. (Christian Brabandt, closes #1590)
2017-06-05patch 8.0.0624: warning for unused variable in tiny buildv8.0.0624Bram Moolenaar
Problem: Warning for unused variable in tiny build. (Tony Mechelynck) Solution: Add an #ifdef.
2017-06-05patch 8.0.0623: error for invalid regexp is not very informativev8.0.0623Bram Moolenaar
Problem: The message "Invalid range" is used for multiple errors. Solution: Add two more specific error messages. (Itchyny, Ken Hamada)
2017-06-05patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive"v8.0.0622Bram Moolenaar
Problem: Using a text object to select quoted text fails when 'selection' is set to "exclusive". (Guraga) Solution: Swap cursor and visual start position. (Christian Brabandt, closes #1687)
2017-06-05patch 8.0.0621: :stag does not respect 'switchbuf'v8.0.0621Bram Moolenaar
Problem: The ":stag" command does not respect 'switchbuf'. Solution: Check 'switchbuf' for tag commands that may open a new window. (Ingo Karkat, closes #1681) Define macros for the return values of getfile().
2017-06-05patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not neededv8.0.0620Bram Moolenaar
Problem: Since we only support GTK versions that have it, the ckeck for HAVE_GTK_MULTIHEAD is no longer needed. Solution: Remove HAVE_GTK_MULTIHEAD. (Kazunobu Kuriyama)
2017-06-05Update runtime files.Bram Moolenaar
2017-06-05patch 8.0.0619: GUI gets stuck if timer uses feedkeys()v8.0.0619Bram Moolenaar
Problem: In the GUI, when a timer uses feedkeys(), it still waits for an event. (Raymond Ko) Solution: Check tb_change_cnt in one more place.
2017-06-05patch 8.0.0618: NFA regex engine handles [0-z] incorrectlyv8.0.0618Bram Moolenaar
Problem: NFA regex engine handles [0-z] incorrectly. Solution: Return at the right point. (James McCoy, closes #1703)
2017-06-04patch 8.0.0617: hardcopy test hangs on MS-Windowsv8.0.0617Bram Moolenaar
Problem: Hardcopy test hangs on MS-Windows. Solution: Check the postscript feature is supported.
2017-06-04patch 8.0.0616: not always setting 'background' correctly after :hi Normalv8.0.0616Bram Moolenaar
Problem: When setting the cterm background with ":hi Normal" the value of 'background' may be set wrongly. Solution: Check that the color is less than 16. Don't set 'background' when it was set explicitly. (Lemonboy, closes #1710)
2017-06-04patch 8.0.0615: using % with :hardcopy wrongly escapes spacesv8.0.0615Bram Moolenaar
Problem: Using % with :hardcopy wrongly escapes spaces. (Alexey Muranov) Solution: Expand % differently. (Christian Brabandt, closes #1682)
2017-06-04patch 8.0.0614: float2nr() is not exactly rightv8.0.0614Bram Moolenaar
Problem: float2nr() is not exactly right. Solution: Make float2nr() more accurate. Turn test64 into a new style test. (Hirohito Higashi, closes #1688)
2017-06-04patch 8.0.0613: the conf filetype is used before ftdetect from packagesv8.0.0613Bram Moolenaar
Problem: The conf filetype detection is done before ftdetect scripts from packages that are added later. Solution: Add the FALLBACK argument to :setfiletype. (closes #1679, closes #1693)
2017-06-04patch 8.0.0612: pack dirs are added to 'runtimepath' too latev8.0.0612Bram Moolenaar
Problem: Package directories are added to 'runtimepath' only after loading non-package plugins. Solution: Split off the code to add package directories to 'runtimepath'. (Ingo Karkat, closes #1680)
2017-06-04patch 8.0.0611: the screen is not redrawn after sending t_u7v8.0.0611Bram Moolenaar
Problem: When t_u7 is sent a few characters in the second screen line are overwritten and not redrawn later. (Rastislav Barlik) Solution: Move redrawing the screen to after overwriting the characters.
2017-06-04patch 8.0.0610: the screen is redrawn when default 'background' is detectedv8.0.0610Bram Moolenaar
Problem: The screen is redrawn when t_BG is set and used to detect the value for 'background'. Solution: Don't redraw when the value of 'background' didn't change.
2017-06-04patch 8.0.0609: some people still don't know how to quitv8.0.0609Bram Moolenaar
Problem: For some people the hint about quitting is not sufficient. Solution: Put <Enter> separately. Also use ":qa!" to get out even when there are changes.
2017-06-04patch 8.0.0608: cannot manipulate other than the current quickfix listv8.0.0608Bram Moolenaar
Problem: Cannot manipulate other than the current quickfix list. Solution: Pass the list index to quickfix functions. (Yegappan Lakshmanan)
2017-06-04patch 8.0.0607: after :bwipe + :new bufref might still be validv8.0.0607Bram Moolenaar
Problem: When creating a bufref, then using :bwipe and :new it might get the same memory and bufref_valid() returns true. Solution: Add br_fnum to check the buffer number didn't change.
2017-05-28patch 8.0.0606: cannot set the context for a specified quickfix listv8.0.0606Bram Moolenaar
Problem: Cannot set the context for a specified quickfix list. Solution: Use the list index instead of the current list. (Yegappan Lakshmanan)
2017-05-28patch 8.0.0605: the quickfix cached buffer may become invalidv8.0.0605Bram Moolenaar
Problem: The buffer that quickfix caches for performance may become invalid. (Daniel Hahler) Solution: Reset qf_last_bufref in qf_init_ext(). (Daniel Hahler, closes #1728, closes #1676)
2017-05-27Update runtime files.Bram Moolenaar
2017-05-24patch 8.0.0604: gF test fails still on MS-Windowsv8.0.0604Bram Moolenaar
Problem: gF test fails still on MS-Windows. Solution: Use : before the line number and remove it from 'isfname'.
2017-05-24patch 8.0.0603: gF test fails on MS-Windowsv8.0.0603Bram Moolenaar
Problem: gF test fails on MS-Windows. Solution: Use @ instead of : before the line number
2017-05-24patch 8.0.0602: when gF fails to edit the file the cursor still movesv8.0.0602Bram Moolenaar
Problem: When gF fails to edit the file the cursor still moves to the found line number. Solution: Check the return value of do_ecmd(). (Michael Hwang)
2017-05-23patch 8.0.0601: no test coverage for :spellrepallv8.0.0601Bram Moolenaar
Problem: No test coverage for :spellrepall. Solution: Add a test. (Dominique Pelle, closes #1717)
2017-05-18patch 8.0.0600: test_recover fails on some systemsv8.0.0600Bram Moolenaar
Problem: test_recover fails on some systems. Solution: Explicitly check if "/" is writable. (Ken Takata)
2017-05-16patch 8.0.0599: diff mode is insufficiently testedv8.0.0599Bram Moolenaar
Problem: diff mode is insufficiently tested Solution: Add more test cases. (Dominique Pelle, closes #1685)
2017-05-16patch 8.0.0598: building with gcc 7.1 yields new warningsv8.0.0598Bram Moolenaar
Problem: Building with gcc 7.1 yields new warnings. Solution: Initialize result. (John Marriott)