- Jul 19, 2020
-
-
Bram Moolenaar authored
Problem: CTRL-K in Insert mode gets <CursorHold> inserted. (Roland Puntaier) Solution: Do not reset did_cursorhold, restore it. (closes #6447)
-
Bram Moolenaar authored
Problem: ":marks" may show '< and '> mixed up. Solution: Show the mark position as where '< and '> would jump.
-
Bram Moolenaar authored
Problem: Vim9: warning for pointer usage, test failure undetected. Solution: Fix pointer indirection. Give error when executing function failed for any reason. Fix instruction names.
-
Bram Moolenaar authored
Problem: Vim9: cannot use the g:, b:, t: and w: namespaces. Solution: Add instructions to push a dict for the namespaces. (closes #6480)
-
Bram Moolenaar authored
Problem: Vim9: disassemble test fails. Solution: Change INDEX to LISTINDEX. Add test for STRINDEX.
-
Bram Moolenaar authored
Problem: Netbeans test is flaky in the GUI. Solution: Filter out geometry messages. (Taro Muraoka, closes #6487)
-
Bram Moolenaar authored
Problem: Vim9: cannot index a character in a string. Solution: Add ISN_STRINDEX instruction. (closes #6478)
-
Bram Moolenaar authored
Problem: Vim9: comment after assignment doesn't work. Solution: Skip over white space. (closes #6481)
-
Bram Moolenaar authored
Problem: Build failure in tiny version. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Vim9: in lambda index assumes a list. Solution: Use the value type to decide about list or dict. (closes #6479)
-
Bram Moolenaar authored
Problem: Vim9: cannot have a comment or empty line halfway a list at script level. Solution: Skip more than one line if needed.
-
Bram Moolenaar authored
Problem: Vim9: no error if calling a function with wrong argument type. Solution: Check types of arguments. (closes #6469)
-
- Jul 18, 2020
-
-
Bram Moolenaar authored
Problem: Cannot use getbufinfo() as a method. Solution: Support using getbufinfo() as a method. (closes #6458)
-
Bram Moolenaar authored
Problem: GUI tests sometimes fail because of translations. Solution: Reload the menus without translation. (Taro Muraoka, closes #6486)
-
Bram Moolenaar authored
Problem: "maxwidth" in 'completepopup' not obeyed. (Jay Sitter) Solution: Add separate field for value from option. (closes #6470)
-
Bram Moolenaar authored
Problem: Vim9: a few remaining errors not caught by try/catch. Solution: Do not bail out if an error is inside try/catch.
-
Bram Moolenaar authored
Problem: Changing 'completepopup' after opening a popup has no effect. (Jay Sitter) Solution: Close the popup when the options are changed. (closes #6471)
-
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)
-