| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Problem: Vim9: no error for missing white space around operator.
Solution: Check for white space around && and ||.
|
|
|
|
|
| |
Problem: MS-Windows: warning for using fstat() with stat_T.
Solution: use _fstat64() if available. (Naruhiko Nishino, closes #6625)
|
|
|
|
|
| |
Problem: MS-Windows: autocommand test sometimes fails.
Solution: Do not rely on the cat command.
|
|
|
|
|
| |
Problem: Vim9: no error for missing white space around operator.
Solution: Check for white space around <, !=, etc.
|
|
|
|
|
| |
Problem: Vim9: no error for missing white space around operator.
Solution: Check for white space around *, / and %.
|
|
|
|
|
|
| |
Problem: Test 49 is old style.
Solution: Convert several tests to new style. (Yegappan Lakshmanan,
closes #6629)
|
|
|
|
|
| |
Problem: Vim9: no error for missing white space around operator.
Solution: Check for white space. (closes #6618)
|
|
|
|
|
| |
Problem: Invalid memory access when searching for raw string.
Solution: Check for delimiter match before following quote. (closes #6578)
|
|
|
|
|
| |
Problem: Test trying to run terminal when it is not supported.
Solution: Check if Vim can be run in a terminal.
|
|
|
|
|
|
| |
Problem: Last entry of ":set term=xxx" overwritten by error message when
'cmdheight' is two or more. (Tony Mechelynck)
Solution: Output extra line breaks.
|
|
|
|
|
| |
Problem: Error for white space after expression in assignment.
Solution: Skip over white space. (closes #6617)
|
|
|
|
|
| |
Problem: Stray error for white space after expression.
Solution: Ignore trailing white space. (closes #6608)
|
|
|
|
|
| |
Problem: Vim9: cannot assign to / register in Vim9 script.
Solution: Adjust check for assignment in Vim9 script. (closes #6567)
|
|
|
|
|
| |
Problem: Vim9: test fails with +dnd is not available.
Solution: Add condition.
|
|
|
|
|
| |
Problem: Vim9: cannot assign to / register.
Solution: Adjust check for assignment.
|
|
|
|
|
| |
Problem: Vim9: cannot get the percent register.
Solution: Check for readable registers instead of writable. (closes #6566)
|
|
|
|
|
| |
Problem: Vim9: no error using :let for options and registers.
Solution: Give an error. (closes #6568)
|
|
|
|
|
| |
Problem: Test 59 is old style.
Solution: Convert into a new style test. (Yegappan Lakshmanan, closes #6604)
|
|
|
|
|
|
| |
Problem: Crash when drawing double-wide character in terminal window.
(Masato Nishihata)
Solution: Check getcell() returning NULL. (issue #6141)
|
|
|
|
|
|
| |
Problem: Vim9: no error for shadowing a script-local function by a nested
function.
Solution: Check for script-local function. (closes #6586)
|
|
|
|
|
| |
Problem: Vim9: no proper error if using namespace for nested function.
Solution: Specifically check for a namespace. (closes #6582)
|
|
|
|
|
| |
Problem: Vim9: no test for error message when redefining function.
Solution: Add a test.
|
|
|
|
|
| |
Problem: Vim9: can define a function with the name of an import.
Solution: Disallow using an existing name. (closes #6585)
|
|
|
|
|
| |
Problem: Build failure without the eval feature.
Solution: Add #ifdef.
|
|
|
|
|
| |
Problem: Cannot easily get the script ID.
Solution: Support expand('<SID>').
|
|
|
|
|
| |
Problem: Small build fails.
Solution: Add #ifdef.
|
|
|
|
|
| |
Problem: Redraw error when using visual block and scroll.
Solution: Add check for w_topline. ( closes #6597)
|
|
|
|
|
| |
Problem: Vim9: No test for trying to redefine global function.
Solution: Add a test.
|
|
|
|
|
|
| |
Problem: Vim9: cannot find global function when using g: when local
function with the same name exists.
Solution: Find global function when using g:.
|
|
|
|
|
| |
Problem: Vim9: accidentally using "x" gives a confusing error.
Solution: Disallow using ":t" in Vim9 script. (issue #6399)
|
|
|
|
|
| |
Problem: Build failures.
Solution: Add missing error message.
|
|
|
|
|
|
| |
Problem: Some tests fail on Cirrus CI and/or with FreeBSD.
Solution: Make 'backupskip' empty. Do not run tests as root. Check for
directory when using viminfo. (Ozaki Kiichi, closes #6596)
|
|
|
|
|
| |
Problem: Vim9: assigning to global dict variable doesn't work.
Solution: Guess variable type based in index type. (issue #6591)
|
|
|
|
|
| |
Problem: Vim9: assigning to script-local variable doesn't check type.
Solution: Use the type. (issue #6591)
|
|
|
|
|
| |
Problem: Vim9: cannot use empty key in dict assignment.
Solution: Allow empty key. (closes #6591)
|
|
|
|
|
| |
Problem: Build failure on non-Unix systems.
Solution: Add #ifdef.
|
|
|
|
|
| |
Problem: CTRL-C in the GUI doesn't interrupt. (Sergey Vlasov)
Solution: Recognize "C" with CTRL modifier as CTRL-C. (issue #6565)
|
|
|
|
|
|
| |
Problem: Github workflow timeout needs tuning
Solution: Use a 10 minute timeout. Fail when timing out. (Ken Takata,
closes #6590)
|
|
|
|
|
| |
Problem: Vim9: memory leak when using nested global function.
Solution: Swap from and to when copying the lines.
|
|
|
|
|
|
| |
Problem: Vim9: memory leak when using nested global function.
Solution: Delete the function when deleting the instruction. Disable test
that still causes a leak.
|
|
|
|
|
| |
Problem: Vim9: :echo with two lists doesn't work.
Solution: Do not skip white space before []. (closes #6552)
|
|
|
|
|
|
| |
Problem: Github workflow takes longer than needed.
Solution: Do two test runs in parallel instead of sequentially. (Ken Takata,
closes #6579)
|
|
|
|
|
| |
Problem: Vim9: cannot define global function inside :def function.
Solution: Assign to global variable instead of local. (closes #6584)
|
|
|
|
|
| |
Problem: No space allowed before comma in list.
Solution: Legacy Vim script allows it. (closes #6577)
|
|
|
|
|
| |
Problem: Mac: configure can't find Tcl libraries.
Solution: Adjust configure check. (closes #6575)
|
|
|
|
|
|
| |
Problem: Vim9: skipping over white space after list.
Solution: Do not skip white space, a following [] would be misinterpreted.
(closes #6552) Fix a few side effects.
|
|
|
|
|
| |
Problem: Vim9: using Vim9 script for autaload not tested.
Solution: Add a test. Update help.
|
|
|
|
|
| |
Problem: Vim9: line break after "=" does not work.
Solution: Also allow for NUL after "=". (closes #6549)
|
|
|
|
|
| |
Problem: Vim9: invalid operators only rejected in :def function.
Solution: Also reject them at script level. (closes #6564)
|
|
|
|
|
| |
Problem: Vim9: method on double quoted string doesn't work.
Solution: Recognize double quoted string. (closes #6562)
|