summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2017-10-26patch 8.0.1221: still too many old style testsv8.0.1221Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2256)
2017-10-26patch 8.0.1220: skipping empty statusline groups is not correctv8.0.1220Bram Moolenaar
Problem: Skipping empty statusline groups is not correct. Solution: Also set group_end_userhl. (itchyny)
2017-10-26patch 8.0.1219: terminal test is flakyv8.0.1219Bram Moolenaar
Problem: Terminal test is flaky. Solution: Add test function to list of flaky tests.
2017-10-26patch 8.0.1218: writing to freed memory in autocmdv8.0.1218Bram Moolenaar
Problem: Writing to freed memory in autocmd. Solution: Make a copy of the tag line. (Dominique Pelle, closes #2245)
2017-10-26patch 8.0.1217: can't use remote eval to inspect vars in debug modev8.0.1217Bram Moolenaar
Problem: Can't use remote eval to inspect vars in debug mode. Solution: Don't discard the call stack in debug mode. (closes #2237, #2247)
2017-10-24patch 8.0.1216: tabline is not always updated for :file commandv8.0.1216Bram Moolenaar
Problem: Tabline is not always updated for :file command. (Norio Takagi) Solution: Set redraw_tabline. (Hirohito Higashi)
2017-10-24patch 8.0.1215: newer gcc warns for implicit fallthroughv8.0.1215Bram Moolenaar
Problem: Newer gcc warns for implicit fallthrough. Solution: Consistently use a FALLTHROUGH comment. (Christian Brabandt)
2017-10-23patch 8.0.1214: accessing freed memory when EXITFREE is setv8.0.1214Bram Moolenaar
Problem: Accessing freed memory when EXITFREE is set and there is more than one tab and window. (Dominique Pelle) Solution: Free options later. Skip redraw when exiting.
2017-10-22patch 8.0.1213: setting 'mzschemedll' has no effectv8.0.1213Bram Moolenaar
Problem: Setting 'mzschemedll' has no effect. Solution: Move loading .vimrc to before call to mzscheme_main().
2017-10-22patch 8.0.1212: MS-Windows: tear-off menu does not work on 64 bitv8.0.1212Bram Moolenaar
Problem: MS-Windows: tear-off menu does not work on 64 bit. (shaggyaxe) Solution: Change how the menu handle is looked up. (Ken Takata, closes #1205)
2017-10-22patch 8.0.1211: cannot reorder tab pages with drag & dropv8.0.1211Bram Moolenaar
Problem: Cannot reorder tab pages with drag & drop. Solution: Support drag & drop for GTK and MS-Windows. (Ken Takata, Masamichi Abe)
2017-10-22patch 8.0.1210: CTRL-G and CTRL-T are ignored with typeaheadv8.0.1210Bram Moolenaar
Problem: When typing a search pattern CTRL-G and CTRL-T are ignored when there is typeahead. Solution: Don't pass SEARCH_PEEK and don't call char_avail(). (haya14busa, closes #2233)
2017-10-22patch 8.0.1209: still too many old style testsv8.0.1209Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2230)
2017-10-22patch 8.0.1208: 'statusline' drops empty group with highlight changev8.0.1208Bram Moolenaar
Problem: 'statusline' drops empty group with highlight change. Solution: Do not drop an empty group if it changes highlighting. (Marius Gedminas, closes #2228)
2017-10-19patch 8.0.1207: profiling skips the first and last script linev8.0.1207Bram Moolenaar
Problem: Profiling skips the first and last script line. Solution: Check for BOM after setting script ID. (Lemonboy, closes #2103, closes #2112) Add a test. List the trailing script lines.
2017-10-19patch 8.0.1206: no autocmd for entering or leaving the command linev8.0.1206Bram Moolenaar
Problem: No autocmd for entering or leaving the command line. Solution: Add CmdlineEnter and CmdlineLeave.
2017-10-19patch 8.0.1205: it is possible to unload a changed bufferv8.0.1205Bram Moolenaar
Problem: Using "1q" it is possible to unload a changed buffer. (Rick Howe) Solution: Check the right window for changes.
2017-10-19patch 8.0.1204: a QuitPre autocommand may get the wrong file namev8.0.1204Bram Moolenaar
Problem: A QuitPre autocommand may get the wrong file name. Solution: Pass the buffer being closed to apply_autocmds(). (Rich Howe)
2017-10-15patch 8.0.1203: terminal window mistreats composing charactersv8.0.1203Bram Moolenaar
Problem: Terminal window mistreats composing characters. Solution: Count composing characters with the base character. (Ozaki Kiichi, closes #2195)
2017-10-15patch 8.0.1202: :wall gives an errof for a terminal windowv8.0.1202Bram Moolenaar
Problem: :wall gives an errof for a terminal window. (Marius Gedminas) Solution: Don't try writing a buffer that can't be written. (Yasuhiro Matsumoto, closes #2190)
2017-10-15patch 8.0.1201: "yL" is affected by 'scrolloff'v8.0.1201Bram Moolenaar
Problem: "yL" is affected by 'scrolloff'. (Eli the Bearded) Solution: Don't use 'scrolloff' when an operator is pending.
2017-10-15patch 8.0.1200: tests switch the bell off twicev8.0.1200Bram Moolenaar
Problem: Tests switch the bell off twice. Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
2017-10-15patch 8.0.1199: when 'clipboard' is "autoselectplus" star register is setv8.0.1199Bram Moolenaar
Problem: When 'clipboard' is "autoselectplus" the star register is also set. (Gilles Moris) Solution: Don't set the star register in this situation.
2017-10-15patch 8.0.1198: older compilers don't know uint8_tv8.0.1198Bram Moolenaar
Problem: Older compilers don't know uint8_t. Solution: Use char_u instead.
2017-10-15patch 8.0.1197: MS-Windows build instructions are not up to datev8.0.1197Bram Moolenaar
Problem: MS-Windows build instructions are not up to date. Solution: Adjust the instructions. Fix the nsis script.
2017-10-15patch 8.0.1196: crash when t_RF is not setv8.0.1196Bram Moolenaar
Problem: Crash when t_RF is not set. (Brian Pina) Solution: Add t_RF to the list of terminal options. (Hirohito Higashi)
2017-10-15patch 8.0.1195: can't build on MS-Windowsv8.0.1195Bram Moolenaar
Problem: Can't build on MS-Windows. Solution: Adjust #ifdef and add #ifdefs.
2017-10-14patch 8.0.1194: actual fg and bg colors of terminal are unknownv8.0.1194Bram Moolenaar
Problem: Actual fg and bg colors of terminal are unknown. Solution: Add t_RF. Store response to t_RB and t_RF, use for terminal.
2017-10-14patch 8.0.1193: crash when wiping out a buffer after using getbufinfo()v8.0.1193Bram Moolenaar
Problem: Crash when wiping out a buffer after using getbufinfo(). (Yegappan Lakshmanan) Solution: Remove b:changedtick from the buffer variables.
2017-10-14patch 8.0.1192: MS-Windows: terminal feature not enabled by defaultv8.0.1192Bram Moolenaar
Problem: MS-Windows: terminal feature not enabled by default. Solution: Enable it. (Ken Takata)
2017-10-14patch 8.0.1191: MS-Windows: missing 32 and 64 bit files in installerv8.0.1191Bram Moolenaar
Problem: MS-Windows: missing 32 and 64 bit files in installer. Solution: Include both 32 and 64 bit GvimExt and related dll files. Remove old Windows code from the installer. (Ken Takata, closes #2144)
2017-10-14patch 8.0.1190: unusable after opening new window in BufWritePre eventv8.0.1190Bram Moolenaar
Problem: Vim becomes unusable after opening new window in BufWritePre event. Solution: Call not_exiting(). (Martin Tournoij, closes #2205) Also for "2q" when a help window is open. Add a test.
2017-10-14patch 8.0.1189: E172 is not actually usefulv8.0.1189Bram Moolenaar
Problem: E172 is not actually useful, it's only on Unix anyway. Solution: Remove the check and the error.
2017-10-13patch 8.0.1188: autocmd test fails on MS-Windowsv8.0.1188Bram Moolenaar
Problem: Autocmd test fails on MS-Windows. Solution: Give the buffer a name and find the buffer to be wiped out by name.
2017-10-12patch 8.0.1187: building with lua fails for OSX on Travisv8.0.1187Bram Moolenaar
Problem: Building with lua fails for OSX on Travis. Solution: Separate brew-update and brew-install. (Ozaki Kiichi, closes #2203)
2017-10-12patch 8.0.1186: still quite a few old style testsv8.0.1186Bram Moolenaar
Problem: Still quite a few old style tests. Solution: Convert old to new style tests. (Yegappan Lakshmanan) Avoid ringing the bell while running tests.
2017-10-12patch 8.0.1185: Ruby library includes minor version numberv8.0.1185Bram Moolenaar
Problem: Ruby library includes minor version number. Solution: Only use the API version number. (Ben Boeckel, closes #2199)
2017-10-08patch 8.0.1184: the :marks command is not testedv8.0.1184Bram Moolenaar
Problem: The :marks command is not tested. Solution: Add a test. (Dominique Pelle, closes #2197)
2017-10-08patch 8.0.1183: MS-Windows build instructions are outdatedv8.0.1183Bram Moolenaar
Problem: MS-Windows build instructions are outdated. Solution: Update instructions for MSVC 2015. Update the build script.
2017-10-08patch 8.0.1182: cannot see or change mzscheme dll namev8.0.1182Bram Moolenaar
Problem: Cannot see or change mzscheme dll name. Solution: Add 'mzschemedll' and 'mzschemegcdll'.
2017-10-07patch 8.0.1181: tests using Vim command fail on MS-Windowsv8.0.1181Bram Moolenaar
Problem: Tests using Vim command fail on MS-Windows. Solution: Do not add quotes around the Vim command.
2017-10-07patch 8.0.1180: MS-Windows testclean target deletes the color scriptv8.0.1180Bram Moolenaar
Problem: MS-Windows testclean target deletes the color script. Solution: Rename the script file.
2017-10-07patch 8.0.1179: Test_popup_and_window_resize() does not always passv8.0.1179Bram Moolenaar
Problem: Test_popup_and_window_resize() does not always pass. Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file. (Ozaki Kiichi, closes #2186)
2017-10-07patch 8.0.1178: using old compiler on MS-Windowsv8.0.1178Bram Moolenaar
Problem: Using old compiler on MS-Windows. Solution: Switch default build on MS-Windows to use MSVC 2015. (Ken Takata)
2017-10-07patch 8.0.1177: in a terminal window the popup menu is not clearedv8.0.1177Bram Moolenaar
Problem: In a terminal window the popup menu is not cleared. (Gerry Agbobada) Solution: Redraw when SOME_VALID is used instead of NOT_VALID. (closes #2194)
2017-10-06patch 8.0.1176: job_start() does not handle quote and backslash correctlyv8.0.1176Bram Moolenaar
Problem: Job_start() does not handle quote and backslash correctly. Solution: Remove quotes, recognize and remove backslashes.
2017-10-04patch 8.0.1175: build failure without +termresponsev8.0.1175Bram Moolenaar
Problem: Build failure without +termresponse. Solution: Add #ifdef.
2017-10-04patch 8.0.1174: Mac Terminal.app has wrong color for whitev8.0.1174Bram Moolenaar
Problem: Mac Terminal.app has wrong color for white. Solution: Use white from the color cube.
2017-10-02patch 8.0.1173: terminal window is not redrawn after CTRL-Lv8.0.1173Bram Moolenaar
Problem: Terminal window is not redrawn after CTRL-L. (Marcin Szamotulski) Solution: Redraw the whole terminal when w_redr_type is NOT_VALID.
2017-10-02patch 8.0.1172: when E734 is given option is still setv8.0.1172Bram Moolenaar
Problem: When E734 is given option is still set. Solution: Assign NULL to "s". (Christian Brabandt)