- Jul 18, 2020
-
-
Bram Moolenaar authored
Problem: Vim9: a few errors not caught by try/catch. Solution: Do not bail out if an error is inside try/catch. Fix that a not matching catch doesn't jump to :endtry.
-
Bram Moolenaar authored
Problem: Not all mouse codes covered by tests. Solution: Add more tests for the mouse. (Yegappan Lakshmanan, closes #6472)
-
Bram Moolenaar authored
Problem: Lua build problem with old compiler. Solution: Move declarations to start of the block. (Taro Muraoka, closes #6477)
-
- Jul 17, 2020
-
-
Bram Moolenaar authored
Problem: Vim9: various errors not caught by try/catch. Solution: Do not bail out if an error is inside try/catch.
-
Bram Moolenaar authored
Problem: MS-Windows GUI: Snap cancelled by split command. Solution: Do not cancel Snap when splitting a window. (Ken Takata, closes #6467)
-
Bram Moolenaar authored
Problem: MS-Windows: GUI code can be cleaned up. Solution: Do a bit of cleaning up. (Ken Takata, closes #6465)
-
Bram Moolenaar authored
Problem: Vim9: list index error not caught by try/catch. Solution: Do not bail out if an error is inside try/catch. (closes #6462)
-
Bram Moolenaar authored
Problem: Build error without the eval feature. Solution: Declare starts_with_colon. Make function local.
-
Bram Moolenaar authored
Problem: Scrollbars not flush against the window edges when maximised. Solution: Add padding. (Ken Takata, closes #5602, closes #6466)
-
Bram Moolenaar authored
Problem: Vim9: allowing both quoted and # comments is confusing. Solution: Only support # comments in Vim9 script.
-
- Jul 16, 2020
-
-
Bram Moolenaar authored
Problem: MS-Windows: windows positioning wrong when the taskbar is placed at the top or left of the screen. Solution: Use GetWindowRect and MoveWindow APIs. (Yukihiro Nakadaira, Ken Takata, closes #6455)
-
Bram Moolenaar authored
Problem: Linker errors when building with dynamic Python 3.9. Solution: Add #defined items. (closes #6461)
-
- Jul 15, 2020
-
-
Bram Moolenaar authored
Problem: Vim9: arguments from partial are not used. Solution: Put the partial arguments on the stack. (closes #6460)
-
Bram Moolenaar authored
Problem: Vim9: invalid type error for function default value. Solution: Use right argument index. (closes #6458)
-
Bram Moolenaar authored
Problem: When using valgrind a Vim command started by a test uses the same log file name which gets overwritten. Solution: Fix regexp to rename the log file.
-
Bram Moolenaar authored
Problem: Memory leak when updating popup window. Solution: Clear search highlighting.
-
Bram Moolenaar authored
Problem: memory access error when dragging a popup window over a buffer with folding. Solution: Avoid going over the end of the cache. (closes #6438)
-
Bram Moolenaar authored
Problem: Symlink not followed if dirname ends in //. Solution: Resolve symlink earlier. (Tomáš Janoušek, closes #6454)
-
Bram Moolenaar authored
Problem: Vim9: cannot use 'text'->func(). Solution: Recognize string at start of command.
-
Bram Moolenaar authored
Problem: Startup test depends on random source file. Solution: Write a test file to find quickfix errors in.
-
- Jul 14, 2020
-
-
Bram Moolenaar authored
Problem: Startup test fails. Solution: Adjust expected values for deleted lines.
-
Bram Moolenaar authored
Problem: Atari MiNT support is outdated. Solution: Nobody responded this code is still useful, so let's delete it.
-
Bram Moolenaar authored
Problem: MS-Windows: default _vimrc not correct in silent install mode. Solution: Add the LoadDefaultVimrc macro. (Ken Takata, closes #6451)
-
Bram Moolenaar authored
Problem: Mouse codes not tested sufficiently. Solution: Add more tests for mouse codes. (closes #6436)
-
Bram Moolenaar authored
Problem: Cannot build with Lua 5.4. Solution: Use luaL_typeerror instead defining it. (closes #6454)
-
Bram Moolenaar authored
Problem: Removed more than dead code. Solution: Put back the decrement.
-
Bram Moolenaar authored
Problem: Using ht_used when looping through a hashtab is less reliable. Solution: Use ht_changed in a few more places.
-
Bram Moolenaar authored
Problem: Vim9: test failure. Solution: Add missing changes to hashtab.
-
Bram Moolenaar authored
Problem: Build failure. Solution: Add missing change.
-
Bram Moolenaar authored
Problem: Vim9: crash in expr test when run in the GUI. Solution: Break out of loop over hashtab also when function got removed and added.
-
- Jul 13, 2020
-
-
Bram Moolenaar authored
Problem: Vim9: crash in expr test when run in the GUI. Solution: Temporarily comment out two test lines.
-
Bram Moolenaar authored
Problem: Vim9: && and || work different when not compiled. Solution: Keep the value.
-
Bram Moolenaar authored
Problem: Vim9: true and false not recognized in Vim9 script. Solution: Recognize true and false.
-
Bram Moolenaar authored
Problem: Unused assignments in expression evaluation. Solution: Move declarations and assignments to inner blocks where possible.
-
Bram Moolenaar authored
Problem: Vim9: crash when calling a closure from a builtin function. Solution: Use the current execution context. (closes #6441)
-
Bram Moolenaar authored
Problem: Vim9: crash when passing number as dict key. Solution: Check key type to be string. (closes #6449)
-
Bram Moolenaar authored
Problem: Vim9: cannot disassemble a lambda function. Solution: Recognize "<lambda>123" as a function name.
-
- Jul 12, 2020
-
-
Bram Moolenaar authored
Problem: Not all assert functions are fully tested. Solution: Test more assert functions.
-
Bram Moolenaar authored
Problem: Terminal2 test sometimes hangs in the GUI on Travis. Solution: Move test function to terminal3 to see if the problem moves too.
-
Bram Moolenaar authored
Problem: Clientserver test still fails on MS-Windows. Solution: Expect a different error message.
-