summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-11-11patch 8.0.1285: occasional crash when using a channelv8.0.1285Bram Moolenaar
Problem: Occasional crash when using a channel. (Marek) Solution: Decrement reference count later. (closes #2315)
2017-11-10patch 8.0.1284: loading file type detection slows down startupv8.0.1284Bram Moolenaar
Problem: Loading file type detection slows down startup. Solution: Store the last pattern of an autocommand event to make appending quicker.
2017-11-09patch 8.0.1283: test 86 fails under ASANv8.0.1283Bram Moolenaar
Problem: Test 86 fails under ASAN. Solution: Fix that an item was added to a dictionary twice.
2017-11-09patch 8.0.1282: script-local variable defined in the wrong scriptv8.0.1282Bram Moolenaar
Problem: script-local variable defined in the wrong script Solution: Move variable to autoload/filetype.vim.
2017-11-09patch 8.0.1281: loading file type detection slows down startupv8.0.1281Bram Moolenaar
Problem: Loading file type detection slows down startup. Solution: Move functions to an autoload script.
2017-11-09patch 8.0.1280: Python None cannot be converted to a Vim typev8.0.1280Bram Moolenaar
Problem: Python None cannot be converted to a Vim type. Solution: Convert it to v:none. (Ken Takata)
2017-11-09patch 8.0.1279: initializing menus can be slowv8.0.1279Bram Moolenaar
Problem: Initializing menus can be slow, especially when there are many keymaps, color schemes, etc. Solution: Do the globbing for runtime files lazlily. (Ken Takata)
2017-11-09patch 8.0.1278: GUI window always resizes when adding scrollbarv8.0.1278Bram Moolenaar
Problem: GUI window always resizes when adding/removing a scrollbar, toolbar, etc. Solution: Add the 'k' flag in 'guioptions' to keep the GUI window size and change the number of lines/columns instead. (Ychin, closes #703)
2017-11-09patch 8.0.1277: terminal window CR-NL conversions may cause problemsv8.0.1277Bram Moolenaar
Problem: Terminal window CR-NL conversions may cause problems. Solution: Avoid most conversions, only fetch the current backspace key value from the tty. (mostly by Ozaki Kiichi, closes #2278)
2017-11-09patch 8.0.1276: key lost when window closed in exit callbackv8.0.1276Bram Moolenaar
Problem: Typed key is lost when the terminal window is closed in exit callback. (Gabriel Barta) Solution: When the current window changes bail out of the wait loop. (closes #2302)
2017-11-09patch 8.0.1275: CmdlineLeave autocmd prevents fold from openingv8.0.1275Bram Moolenaar
Problem: CmdlineLeave autocmd prevents fold from opening. (Waivek) Solution: Save and restore KeyTyped. (closes #2305)
2017-11-06patch 8.0.1274: setbufline() fails when using foldingv8.0.1274Bram Moolenaar
Problem: setbufline() fails when using folding. Solution: Set "curwin" if needed. (Ozaki Kiichi, closes #2293)
2017-11-06patch 8.0.1273: old test file remainingv8.0.1273Bram Moolenaar
Problem: Old test file remaining. Solution: Delete it.
2017-11-05patch 8.0.1272: warnings for unused variables in tiny buildv8.0.1272Bram Moolenaar
Problem: Warnings for unused variables in tiny build. Solution: Add #ifdef. (Dominique Pelle, closes #2288)
2017-11-05patch 8.0.1271: still too many old style testsv8.0.1271Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2290)
2017-11-05patch 8.0.1270: mismatching file name with Filelistv8.0.1270Bram Moolenaar
Problem: Mismatching file name with Filelist. Solution: Rename color_ramp.vim to xterm_ramp.vim
2017-11-05Update runtime files.Bram Moolenaar
2017-11-05patch 8.0.1269: effect of autocommands on marks is not testedv8.0.1269Bram Moolenaar
Problem: Effect of autocommands on marks is not tested. Solution: Add a couple of tests. (James McCoy, closes #2271)
2017-11-05patch 8.0.1268: PC install instructions are incompletev8.0.1268Bram Moolenaar
Problem: PC install instructions are incomplete. Solution: Update the instructions. (Ken Takata)
2017-11-04patch 8.0.1267: Test_swap_group may leave file behindv8.0.1267Bram Moolenaar
Problem: Test_swap_group may leave file behind. Solution: Add a try/finally.
2017-11-04patch 8.0.1266: Test_swap_directory was commented outv8.0.1266Bram Moolenaar
Problem: Test_swap_directory was accidentally commented out. Solution: Uncomment the test.
2017-11-04patch 8.0.1265: swap test not skipped when there is one groupv8.0.1265Bram Moolenaar
Problem: Swap test not skipped when there is one group. Solution: Convert list to string for the message.
2017-11-04patch 8.0.1264: terminal debugger gets stuck in small windowv8.0.1264Bram Moolenaar
Problem: Terminal debugger gets stuck in small window. Solution: Add "-quiet" to the gdb command. (Christian Brabandt, closes #2154)
2017-11-04patch 8.0.1263: others can read the swap file if a user is carelessv8.0.1263Bram Moolenaar
Problem: Others can read the swap file if a user is careless with his primary group. Solution: If the group permission allows for reading but the world permissions doesn't, make sure the group is right.
2017-11-04patch 8.0.1262: terminal redir test is flakyv8.0.1262Bram Moolenaar
Problem: Terminal redir test is flaky. Solution: Add it to the list of flaky tests.
2017-11-04patch 8.0.1261: program in terminal window gets NL instead of CRv8.0.1261Bram Moolenaar
Problem: Program in terminal window gets NL instead of CR. (Lifepillar) Solution: Check the tty setup more often. (closes #1998)
2017-11-04patch 8.0.1260: using global variables for WaitFor()v8.0.1260Bram Moolenaar
Problem: Using global variables for WaitFor(). Solution: Use a lambda function instead. Don't check a condition if WaitFor() already checked it.
2017-11-04patch 8.0.1259: search test can be flakyv8.0.1259Bram Moolenaar
Problem: Search test can be flaky. Solution: Use WaitFor() instead of a delay. Make it possible to pass a funcref to WaitFor() to avoid the need for global variables. (James McCoy, closes #2282)
2017-11-04patch 8.0.1258: 'ttymouse' is set to "sgr" even though it's not supportedv8.0.1258Bram Moolenaar
Problem: 'ttymouse' is set to "sgr" even though it's not supported. (Gary Johnson) Solution: Adjust #ifdef
2017-11-02patch 8.0.1257: no test for fix of undefined behaviorv8.0.1257Bram Moolenaar
Problem: No test for fix of undefined behavior. Solution: Add a test. (closes #2255)
2017-11-02patch 8.0.1256: typo in configure variable vim_cv_tgentv8.0.1256Bram Moolenaar
Problem: Typo in configure variable vim_cv_tgent. (Matthieu Guillard) Solution: Rename the variable. (closes #2281)
2017-11-02Long overdue runtime update.Bram Moolenaar
2017-11-02patch 8.0.1255: duplicate badge README filev8.0.1255Bram Moolenaar
Problem: duplicate badge README file. Solution: Remove one. (Dominique Pelle)
2017-11-02patch 8.0.1254: undefined left shift in gethexchrs()v8.0.1254Bram Moolenaar
Problem: Undefined left shift in gethexchrs(). (geeknik) Solution: Use unsigned long. (idea by Christian Brabandt, closes #2255)
2017-11-02patch 8.0.1253: still too many old style testsv8.0.1253Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2272)
2017-11-02patch 8.0.1252: incomplete translations makefile for MinGW/Cygwinv8.0.1252Bram Moolenaar
Problem: Incomplete translations makefile for MinGW/Cygwin. Solution: Add missing source files. Make it work with msys2's bash. (Ken Takata)
2017-11-02patch 8.0.1251: invalid expressin passed to WaitFor()v8.0.1251Bram Moolenaar
Problem: Invalid expressin passed to WaitFor(). Solution: Check if the variable exists.
2017-11-02patch 8.0.1250: 'hlsearch' highlighting not removed after incsearchv8.0.1250Bram Moolenaar
Problem: 'hlsearch' highlighting not removed after incsearch (lacygoill) Solution: Redraw all windows. Start search at the end of the match. Improve how CTRL-G works with incremental search. Add tests. (Christian Brabandt, Hirohito Higashi, haya14busa, closes #2267)
2017-11-02patch 8.0.1249: no error when WaitFor() gets an invalid wrong expressionv8.0.1249Bram Moolenaar
Problem: No error when WaitFor() gets an invalid wrong expression. Solution: Do not ignore errors in evaluationg the expression. Fix places where the expression was wrong.
2017-11-02patch 8.0.1248: stray + in README filev8.0.1248Bram Moolenaar
Problem: Stray + in README file. Solution: Remove the +. Add a line break.
2017-11-02patch 8.0.1247: not easy to find Debian build infov8.0.1247Bram Moolenaar
Problem: Not easy to find Debian build info. Solution: Add a badge in the README file. (Dominique Pelle)
2017-11-02patch 8.0.1246: popup test has an arbitrary delayv8.0.1246Bram Moolenaar
Problem: Popup test has an arbitrary delay. Solution: Wait for the ruler to show. (James McCoy)
2017-11-02patch 8.0.1245: when WaitFor() has a wrong expression it just waits a secondv8.0.1245Bram Moolenaar
Problem: When WaitFor() has a wrong expression it just waits a second, which goes unnoticed. (James McCoy) Solution: When WaitFor() times out throw an exception. Fix places where the expression was wrong.
2017-11-02patch 8.0.1244: search test does not work correctly on MS-Windowsv8.0.1244Bram Moolenaar
Problem: Search test does not work correctly on MS-Windows. Solution: Put text in a file instead of sending it to the terminal. (Christian Brabandt)
2017-11-02patch 8.0.1243: no test for what 8.0.1227 fixesv8.0.1243Bram Moolenaar
Problem: No test for what 8.0.1227 fixes. Solution: Add a test that triggers the problem. (Christian Brabandt)
2017-11-02patch 8.0.1242: function argument with only dash is seen as number zerov8.0.1242Bram Moolenaar
Problem: Function argument with only dash is seen as number zero. (Wang Shidong) Solution: See a dash as a string. (Christian Brabandt)
2017-10-31patch 8.0.1241: popup test is flakyv8.0.1241Bram Moolenaar
Problem: Popup test is flaky. (James McCoy) Solution: Increase the wait time. (Dominique Pelle)
2017-10-30patch 8.0.1240: MS-Windows: term_start() does not support environmentv8.0.1240Bram Moolenaar
Problem: MS-Windows: term_start() does not support environment. Solution: Implement the environment argument. (Yasuhiro Matsumoto, closes #2264)
2017-10-30patch 8.0.1239: cannot use a lambda for the skip argument to searchpair()v8.0.1239Bram Moolenaar
Problem: Cannot use a lambda for the skip argument to searchpair(). Solution: Evaluate a partial, funcref and lambda. (LemonBoy, closes #1454, closes #2265)
2017-10-29patch 8.0.1238: incremental search only shows one matchv8.0.1238Bram Moolenaar
Problem: Incremental search only shows one match. Solution: When 'incsearch' and and 'hlsearch' are both set highlight all matches. (haya14busa, closes #2198)