summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-10-19patch 8.1.2182: test42 seen as binary by git diffv8.1.2182Bram Moolenaar
Problem: Test42 seen as binary by git diff. Solution: Add .gitattributes file. Make explicit that 'cpo' does not contain 'S'. (Daniel Hahler, closes #5072)
2019-10-19patch 8.1.2181: highlighting wrong when item follows tabv8.1.2181Bram Moolenaar
Problem: Highlighting wrong when item follows tab. Solution: Don't use syntax attribute when n_extra is non-zero. (Christian Brabandt, closes #5076)
2019-10-19patch 8.1.2180: Error E303 is not useful when 'directory' is emptyv8.1.2180Bram Moolenaar
Problem: Error E303 is not useful when 'directory' is empty. Solution: Skip the error message. (Daniel Hahler, #5067)
2019-10-19patch 8.1.2179: pressing "q" at the more prompt doesn't stop Python outputv8.1.2179Bram Moolenaar
Problem: Pressing "q" at the more prompt doesn't stop Python output. (Daniel Hahler) Solution: Check for got_int in writer(). (closes #5053) Also do this for Lua.
2019-10-19patch 8.1.2178: accessing uninitialized memory in testv8.1.2178Bram Moolenaar
Problem: Accessing uninitialized memory in test. Solution: Check if there was a match before using the match position. (Dominique Pelle, closes #5088)
2019-10-19patch 8.1.2177: Dart files are not recognizedv8.1.2177Bram Moolenaar
Problem: Dart files are not recognized. Solution: Add a filetype rule. (Eugene Ciurana, closes #5087)
2019-10-18patch 8.1.2176: syntax attributes not combined with Visual highlightingv8.1.2176Bram Moolenaar
Problem: Syntax attributes not combined with Visual highlighting. (Arseny Nasokin) Solution: Combine the attributes. (closes #5083)
2019-10-18patch 8.1.2175: meson files are not recognizedv8.1.2175Bram Moolenaar
Problem: Meson files are not recognized. Solution: Add the meson filetype. (Liam Beguin , Nirbheek Chauhan, closes #5056) Also recognize hollywood.
2019-10-18patch 8.1.2174: screen not recognized as supporting "sgr" mouse codesv8.1.2174Bram Moolenaar
Problem: Screen not recognized as supporting "sgr" mouse codes. Solution: Recognize screen 4.7. (Jordan Christiansen, closes #5042)
2019-10-18patch 8.1.2173: searchit() has too many argumentsv8.1.2173Bram Moolenaar
Problem: Searchit() has too many arguments. Solution: Move optional arguments to a struct. Add the "wrapped" argument.
2019-10-18patch 8.1.2172: spell highlight is wrong at start of the linev8.1.2172Bram Moolenaar
Problem: Spell highlight is wrong at start of the line. Solution: Fix setting the "v" variable. (closes #5078)
2019-10-17patch 8.1.2171: mouse support not always availablev8.1.2171Bram Moolenaar
Problem: Mouse support not always available. Solution: Enable mouse support also in tiny version. Do not define FEAT_MOUSE_XTERM on MS-Windows (didn't really work).
2019-10-17patch 8.1.2170: cannot build without the +termresponse featurev8.1.2170Bram Moolenaar
Problem: Cannot build without the +termresponse feature. Solution: Add #ifdef.
2019-10-17patch 8.1.2169: terminal flags are never resetv8.1.2169Bram Moolenaar
Problem: Terminal flags are never reset. Solution: Reset the flags when setting 'term'.
2019-10-16patch 8.1.2168: heredoc assignment not skipped in if blockv8.1.2168Bram Moolenaar
Problem: Heredoc assignment not skipped in if block. Solution: Check if "skip" is set. (closes #5063)
2019-10-16patch 8.1.2167: mapping test fails on MS-Windowsv8.1.2167Bram Moolenaar
Problem: Mapping test fails on MS-Windows. Solution: Remove all the existing Insert-mode mappings.
2019-10-16patch 8.1.2166: rubyeval() not tested as a methodv8.1.2166Bram Moolenaar
Problem: Rubyeval() not tested as a method. Solution: Change a test case.
2019-10-16Update runtime files.Bram Moolenaar
2019-10-16patch 8.1.2165: mapping test fails on Macv8.1.2165Bram Moolenaar
Problem: Mapping test fails on Mac. Solution: Remove the default Mac mapping.
2019-10-16patch 8.1.2164: stuck when using "j" in a popupwin with popup_filter_menuv8.1.2164Bram Moolenaar
Problem: Stuck when using "j" in a popupwin with popup_filter_menu if a line wraps. Solution: Check the cursor line is visible. (closes #4577)
2019-10-16patch 8.1.2163: cannot build with +spell but without +syntaxv8.1.2163Bram Moolenaar
Problem: Cannot build with +spell but without +syntax. Solution: Add #ifdef. (John Marriott)
2019-10-16patch 8.1.2162: popup resize test is flakyv8.1.2162Bram Moolenaar
Problem: Popup resize test is flaky. (Christian Brabandt) Solution: Add the function to the list of flaky tests.
2019-10-16patch 8.1.2161: mapping test failsv8.1.2161Bram Moolenaar
Problem: Mapping test fails. Solution: Run the test separately.
2019-10-16patch 8.1.2160: cannot build with +syntax but without +terminalv8.1.2160Bram Moolenaar
Problem: Cannot build with +syntax but without +terminal. Solution: Add #ifdef.
2019-10-16patch 8.1.2159: some mappings are listed twicev8.1.2159Bram Moolenaar
Problem: Some mappings are listed twice. Solution: Skip mappings duplicated for modifyOtherKeys. (closes #5064)
2019-10-16patch 8.1.2158: terminal attributes missing in Terminal-normal modev8.1.2158Bram Moolenaar
Problem: Terminal attributes missing in Terminal-normal mode. Solution: Use "syntax_attr".
2019-10-16patch 8.1.2157: libvterm source files missing from distributionv8.1.2157Bram Moolenaar
Problem: Libvterm source files missing from distribution. Solution: Rename source files. (closes #5065)
2019-10-16patch 8.1.2156: first character after Tab is not highlightedv8.1.2156Bram Moolenaar
Problem: First character after Tab is not highlighted. Solution: Remember the syntax attribute for a column.
2019-10-16patch 8.1.2155: in a terminal window 'cursorlineopt' does not work properlyv8.1.2155Bram Moolenaar
Problem: In a terminal window 'cursorlineopt' does not work properly. Solution: Check the 'cursorlineopt' value. (closes #5055)
2019-10-16patch 8.1.2154: quickfix window height wrong when there is a tablinev8.1.2154Bram Moolenaar
Problem: Quickfix window height wrong when there is a tabline. (Daniel Hahler) Solution: Take the tabline height into account. (closes #5058)
2019-10-16patch 8.1.2153: combining text property and syntax highlight is wrongv8.1.2153Bram Moolenaar
Problem: Combining text property and syntax highlight is wrong. (Nick Jensen) Solution: Compute the syntax highlight attribute much earlier. (closes #5057)
2019-10-15patch 8.1.2152: problems navigating tags file on MacOS Catalinav8.1.2152Bram Moolenaar
Problem: Problems navigating tags file on MacOS Catalina. Solution: Use fseek instead of lseek. (John Lamb, fixes #5061)
2019-10-14patch 8.1.2151: state test is a bit flakyv8.1.2151Bram Moolenaar
Problem: State test is a bit flaky. Solution: Add to the list of flaky tests.
2019-10-14patch 8.1.2150: no test for 'ttymouse' set from xterm version responsev8.1.2150Bram Moolenaar
Problem: No test for 'ttymouse' set from xterm version response. Solution: Test the three possible values.
2019-10-14patch 8.1.2149: crash when running out of memory very earlyv8.1.2149Bram Moolenaar
Problem: Crash when running out of memory very early. Solution: Do not use IObuff when it's NULL. (closes #5052)
2019-10-13patch 8.1.2148: no test for right click extending Visual areav8.1.2148Bram Moolenaar
Problem: No test for right click extending Visual area. Solution: Add a test. (Dominique Pelle, closes #5018)
2019-10-13patch 8.1.2147: crash when allocating memory failsv8.1.2147Bram Moolenaar
Problem: Crash when allocating memory fails. (Zu-Ming Jiang) Solution: Check that 'spellcapcheck' is not NULL. (closes #5048)
2019-10-13patch 8.1.2146: build failurev8.1.2146Bram Moolenaar
Problem: Build failure. Solution: Include omitted changed file.
2019-10-13patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabledv8.1.2145Bram Moolenaar
Problem: Cannot map <C-H> when modifyOtherKeys is enabled. Solution: Add the <C-H> mapping twice, both with modifier and as 0x08. Use only the first one when modifyOtherKeys has been detected.
2019-10-12patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeysv8.1.2144Bram Moolenaar
Problem: Side effects when using t_ti to enable modifyOtherKeys. Solution: Add t_TI and t_TE.
2019-10-12patch 8.1.2143: cannot see each command even when 'verbose' is setv8.1.2143Bram Moolenaar
Problem: Cannot see each command even when 'verbose' is set. Solution: List each command when 'verbose' is at least 16.
2019-10-12patch 8.1.2142: some key mappings do not work with modifyOtherKeysv8.1.2142Bram Moolenaar
Problem: Some key mappings do not work with modifyOtherKeys. Solution: Remove the Shift modifier if it is already included in the key.
2019-10-12patch 8.1.2141: :tselect has an extra hit-enter promptv8.1.2141Bram Moolenaar
Problem: :tselect has an extra hit-enter prompt. Solution: Do not set need_wait_return when only moving the cursor. (closes #5040)
2019-10-12patch 8.1.2140: "gk" and "gj" do not work correctly in number columnv8.1.2140Bram Moolenaar
Problem: "gk" and "gj" do not work correctly in number column. Solution: Allow for a negative "curswant". (Zach Wegner, closes #4969)
2019-10-12patch 8.1.2139: the modifyOtherKeys codes are not testedv8.1.2139Bram Moolenaar
Problem: The modifyOtherKeys codes are not tested. Solution: Add a test case.
2019-10-12patch 8.1.2138: including the build number in the Win32 binary is confusingv8.1.2138Bram Moolenaar
Problem: Including the build number in the Win32 binary is confusing. Solution: Only use the patchlevel.
2019-10-12patch 8.1.2137: parsing the termresponse is not testedv8.1.2137Bram Moolenaar
Problem: Parsing the termresponse is not tested. Solution: Add a first test. (related to #5042)
2019-10-11patch 8.1.2136: using freed memory with autocmd from fuzzerv8.1.2136Bram Moolenaar
Problem: using freed memory with autocmd from fuzzer. (Dhiraj Mishra, Dominique Pelle) Solution: Avoid using "wp" after autocommands. (closes #5041)
2019-10-10patch 8.1.2135: with modifyOtherKeys Alt-a does not work properlyv8.1.2135Bram Moolenaar
Problem: With modifyOtherKeys Alt-a does not work properly. Solution: Remove the ALT modifier. Get multi-byte after applying ALT.
2019-10-10patch 8.1.2134: modifier keys are not always recognizedv8.1.2134Bram Moolenaar
Problem: Modifier keys are not always recognized. Solution: Handle key codes generated by xterm with modifyOtherKeys set. Add this to libvterm so we can debug it.