summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-09-16patch 8.1.0399: 'hlsearch' highlight remains in other windowv8.1.0399Bram Moolenaar
Problem: 'hlsearch' highlight remains in other window after cancelling command. Solution: Redraw all windows. Also remove unnecessary delays. (closes #3437)
2018-09-16patch 8.1.0398: no test for -o and -O command line argumentsv8.1.0398Bram Moolenaar
Problem: No test for -o and -O command line arguments. Solution: Add a test. (Dominique Pelle, closes #3438)
2018-09-16patch 8.1.0397: no event triggered after updating diffsv8.1.0397Bram Moolenaar
Problem: No event triggered after updating diffs. Solution: Add the DiffUpdated event.
2018-09-16patch 8.1.0396: another compiler warning on 64-bit MS-Windowsv8.1.0396Bram Moolenaar
Problem: Another compiler warning on 64-bit MS-Windows. Solution: Add type cast. (Mike Williams)
2018-09-16patch 8.1.0395: compiler warning on 64-bit MS-Windowsv8.1.0395Bram Moolenaar
Problem: Compiler warning on 64-bit MS-Windows. Solution: Add type cast. (Mike Williams)
2018-09-16patch 8.1.0394: diffs are not always updated correctlyv8.1.0394Bram Moolenaar
Problem: Diffs are not always updated correctly. Solution: When using internal diff update for any changes properly.
2018-09-15patch 8.1.0393: not all white space difference options availablev8.1.0393Bram Moolenaar
Problem: Not all white space difference options available. Solution: Add "iblank", "iwhiteall" and "iwhiteeol" to 'diffopt'.
2018-09-15patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabledv8.1.0392Bram Moolenaar
Problem: Error while typing :/foo/s// with 'incsearch' enabled. Solution: Do not give search errors when highlighting matches.
2018-09-15patch 8.1.0391: building in a shadow directory failsv8.1.0391Bram Moolenaar
Problem: Building in a shadow directory fails. Solution: Don't link the xdiff directory but what's in it. (closes #3428)
2018-09-14patch 8.1.0390: scrollbars are not testedv8.1.0390Bram Moolenaar
Problem: Scrollbars are not tested. Solution: Add test_scrollbar() and a test.
2018-09-14patch 8.1.0389: :behave command is not testedv8.1.0389Bram Moolenaar
Problem: :behave command is not tested. Solution: Add a test. (Dominique Pelle, closes #3429)
2018-09-13patch 8.1.0388: Coverity complains about possible NULL pointer usev8.1.0388Bram Moolenaar
Problem: Coverity complains about possible NULL pointer use. Solution: Use get_tv_string() instead of get_tv_string_chk().
2018-09-13patch 8.1.0387: no test for 'ambiwidth' detectionv8.1.0387Bram Moolenaar
Problem: No test for 'ambiwidth' detection. Solution: Add a test.
2018-09-13patch 8.1.0386: cannot test with non-default option valuev8.1.0386Bram Moolenaar
Problem: Cannot test with non-default option value. Solution: Add test_option_not_set().
2018-09-13patch 8.1.0385: Coveralls badge doesn't updatev8.1.0385Bram Moolenaar
Problem: Coveralls badge doesn't update. Solution: Update the URL
2018-09-13patch 8.1.0384: sign ordering depends on +netbeans featurev8.1.0384Bram Moolenaar
Problem: Sign ordering depends on +netbeans feature. Solution: Also order signs without +netbeans. (Christian Brabandt, closes #3224)
2018-09-13patch 8.1.0383: missing source file renamev8.1.0383Bram Moolenaar
Problem: Missing source file rename. Solution: Update the dependency.
2018-09-13patch 8.1.0382: some make programs can't handle "xdiff/../"v8.1.0382Bram Moolenaar
Problem: Some make programs can't handle dependency on "xdiff/../". Solution: Strip it out.
2018-09-13patch 8.1.0381: variable declaration not at start of blockv8.1.0381Bram Moolenaar
Problem: Variable declaration not at start of block. Solution: Fix line ordering.
2018-09-13patch 8.1.0380: "make proto" doesn't work wellv8.1.0380Bram Moolenaar
Problem: "make proto" doesn't work well. Solution: Define a few more types for cproto. Update proto files. Fix that workshop didn't build.
2018-09-13patch 8.1.0379: build dependencies are incompletev8.1.0379Bram Moolenaar
Problem: Build dependencies are incomplete. Solution: Update the build dependencies, mainly for xdiff. Adjust object directory for libvterm and xdiff.
2018-09-13patch 8.1.0378: CI build failurev8.1.0378Bram Moolenaar
Problem: CI build failure. Solution: Include vim.h as ../vim.h. Fix compiler warning.
2018-09-13patch 8.1.0377: xdiff doesn't use the Vim memory allocation functionsv8.1.0377Bram Moolenaar
Problem: Xdiff doesn't use the Vim memory allocation functions. Solution: Change the xdl_ defines. Check for out-of-memory. Rename "ignored" to "vim_ignored".
2018-09-13patch 8.1.0376: compiler warning for uninitialized variablev8.1.0376Bram Moolenaar
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
2018-09-13patch 8.1.0375: cannot use diff mode with Cygwin diff.exev8.1.0375Bram Moolenaar
Problem: Cannot use diff mode with Cygwin diff.exe. (Igor Forca) Solution: Skip over unrecognized lines in the diff output.
2018-09-12patch 8.1.0374: moving the cursor is slow when 'relativenumber' is setv8.1.0374Bram Moolenaar
Problem: Moving the cursor is slow when 'relativenumber' is set. Solution: Only redraw the number column, not all lines.
2018-09-12patch 8.1.0373: screen updating still slow when 'cursorline' is setv8.1.0373Bram Moolenaar
Problem: Screen updating still slow when 'cursorline' is set. Solution: Fix setting last_cursorline.
2018-09-12patch 8.1.0372: screen updating slow when 'cursorline' is setv8.1.0372Bram Moolenaar
Problem: Screen updating slow when 'cursorline' is set. Solution: Only redraw the old and new cursor line, not all lines.
2018-09-12patch 8.1.0371: argument types for select() may be wrongv8.1.0371Bram Moolenaar
Problem: Argument types for select() may be wrong. Solution: Use a configure macro. (Tobias Ulmer)
2018-09-12patch 8.1.0370: not using internal diff if 'diffopt' is not changedv8.1.0370Bram Moolenaar
Problem: Not using internal diff if 'diffopt' is not changed. Solution: Correct initialization of diff_flags. (Christian Brabandt)
2018-09-11patch 8.1.0369: continuation lines cannot contain commentsv8.1.0369Bram Moolenaar
Problem: Continuation lines cannot contain comments. Solution: Support using "\ .
2018-09-11patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building failsv8.1.0368Bram Moolenaar
Problem: GTK code has too many #ifdefs and building fails with GTK 2.10. Solution: Always use gtk_widget_get_window() and define it for older GTK versions. (Ken Takata, closes #3421)
2018-09-11patch 8.1.0367: getchar(1) no longer processes pending messagesv8.1.0367Bram Moolenaar
Problem: getchar(1) no longer processes pending messages. (Yasuhiro Matsumoto) Solution: Call parse_queued_messages().
2018-09-10patch 8.1.0366: pieces of the xdiff code are not usedv8.1.0366Bram Moolenaar
Problem: Pieces of the xdiff code are not used. Solution: Add "#if 0" to omit unused code.
2018-09-10patch 8.1.0365: function profile doesn't specify where it was definedv8.1.0365Bram Moolenaar
Problem: Function profile doesn't specify where it was defined. Solution: Show the script name and line number.
2018-09-10patch 8.1.0364: compiler warning in xdiff codev8.1.0364Bram Moolenaar
Problem: Compiler warning in xdiff code. (Yegappan Lakshmanan) Solution: Initialize directly.
2018-09-10patch 8.1.0363: internal diff isn't used by default as advertisedv8.1.0363Bram Moolenaar
Problem: Internal diff isn't used by default as advertised. Solution: Add "internal" to the default value of 'diffopt'. Also add couple of files missing from the distribution.
2018-09-10patch 8.1.0362: cannot get the script line number when executing a functionv8.1.0362Bram Moolenaar
Problem: Cannot get the script line number when executing a function. Solution: Store the line number besides the script ID. (Ozaki Kiichi, closes #3362) Also display the line number with ":verbose set".
2018-09-10patch 8.1.0361: remote user not used for completionv8.1.0361Bram Moolenaar
Problem: Remote user not used for completion. (Stucki) Solution: Use $USER too. (Dominique Pelle, closes #3407)
2018-09-10patch 8.1.0360: using an external diff program is slow and inflexiblev8.1.0360Bram Moolenaar
Problem: Using an external diff program is slow and inflexible. Solution: Include the xdiff library. (Christian Brabandt, closes #2732) Use it by default.
2018-09-10Update runtime files.Bram Moolenaar
2018-09-09patch 8.1.0359: no clue what test failed when using a screendump twicev8.1.0359Bram Moolenaar
Problem: No clue what test failed when using a screendump twice. Solution: Add an extra argument to VerifyScreenDump().
2018-09-09patch 8.1.0358: crash when using term_dumpwrite() after the job finishedv8.1.0358Bram Moolenaar
Problem: Crash when using term_dumpwrite() after the job finished. Solution: Check for a finished job and give an error message.
2018-09-09patch 8.1.0357: instructions for tests are outdatedv8.1.0357Bram Moolenaar
Problem: Instructions for tests are outdated. (Jason Franklin) Solution: Update the text.
2018-09-09patch 8.1.0356: using :s with 'incsearch' prevents CTRL-R CTRL-Wv8.1.0356Bram Moolenaar
Problem: Using :s with 'incsearch' prevents CTRL-R CTRL-W. (Boris Staletic) Solution: When past the pattern put cursor back in the start position. (closes #3413)
2018-09-09patch 8.1.0355: incorrect adjusting the popup menu for the preview windowv8.1.0355Bram Moolenaar
Problem: Incorrect adjusting the popup menu for the preview window. Solution: Compute position and height properl. (Ronan Pigott) Also show at least ten items. (closes #3414)
2018-09-08patch 8.1.0354: packadd test fails on MS-Windowsv8.1.0354Bram Moolenaar
Problem: Packadd test fails on MS-Windows. Solution: Ignore difference between forward and backward slashes.
2018-09-08patch 8.1.0353: an "after" directory of a package is appended to 'rtp'v8.1.0353Bram Moolenaar
Problem: An "after" directory of a package is appended to 'rtp', which will be after the user's "after" directory. () Solution: Insert the package "after" directory before any other "after" directory in 'rtp'. (closes #3409)
2018-09-08patch 8.1.0352: browsing compressed tar files does not always workv8.1.0352Bram Moolenaar
Problem: Browsing compressed tar files does not always work. Solution: Use the "file" command to get the compression type.
2018-09-06patch 8.1.0351: 'incsearch' for :/foo/s//<Esc> changes last search patternv8.1.0351Bram Moolenaar
Problem: 'incsearch' for :/foo/s//<Esc> changes last search pattern. Solution: Save the last search pattern earlier.