This project is mirrored from https://github.com/vim/vim.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 12 Mar, 2021 1 commit
-
-
Bram Moolenaar authored
Problem: Poke files are not recognized. Solution: Add a filetype entry. (Matt Ihlenfield)
-
- 11 Mar, 2021 1 commit
-
-
Bram Moolenaar authored
Problem: Vim9: default argument value may cause internal error. Solution: Hide later function arguments when compiling the expression. (closes #7948)
-
- 10 Mar, 2021 9 commits
-
-
Bram Moolenaar authored
Problem: Recover test hangs in the GUI. Solution: Add g:skipped_reason to skip a _nocatch_ test.
-
Bram Moolenaar authored
Problem: Build failure with tiny features. Solution: Add #ifdef. Run recover test separately.
-
Bram Moolenaar authored
Problem: Recover test fails on FreeBSD. Solution: Check for Linux.
-
Bram Moolenaar authored
Problem: Process id may be invalid. Solution: Use sysinfo.uptime to check for recent reboot. (suggested by Hugo van der Sanden, closes #7947) -
Bram Moolenaar authored
Problem: Vim9: illegal memory access. Solution: Check byte right after "null", not one more.
-
Bram Moolenaar authored
Problem: Vim9: type error for assigning the result of list concatenation to a list. Solution: Do not consider concatenation result in a constant. (closes #7942) -
Bram Moolenaar authored
Problem: Vim9: cannot compare result of getenv() with null. Solution: Make the return type of getenv() "any". (closes #7943)
-
Bram Moolenaar authored
Problem: Vim9: screendump test fails on MS-Windows. Solution: Use :function instead of :def.
-
Bram Moolenaar authored
Problem: Vim9: sourcing Vim9 script triggers a redraw. Solution: Do not let setting/restoring 'cpoptions' cause a redraw. (closes #7920)
-
- 08 Mar, 2021 4 commits
-
-
Bram Moolenaar authored
Problem: Vim9: checking vararg type is wrong when function is auto-loaded. Solution: Use the member type. (closes #7933)
-
Bram Moolenaar authored
Problem: Vim9: crash in garbagecollect after for loop. Solution: Do not set a reference in script item when the name was cleared. (closes #7935) -
Bram Moolenaar authored
Problem: Lua cannot handle a passed in lambda. Solution: Handle VAR_PARTIAL. (Prabir Shrestha, closes #7937, closes #7936)
-
Bram Moolenaar authored
Problem: Compiler warning for type conversion. Solution: Add a typecast. (Mike Williams)
-
- 06 Mar, 2021 4 commits
-
-
Bram Moolenaar authored
Problem: Vim9: defining a :func function checks for white space after a comma in the arguments. Solution: Only check for white space in a :def function. (closes #7930) -
Bram Moolenaar authored
Problem: Vim9: a function name with "->" in the next line doesn't work. Solution: Recognize a function name by itself. (closes #7770)
-
Bram Moolenaar authored
Problem: Vim9: crash when calling partial with wrong function. Solution: Check argument types of called function. (closes #7912)
-
Bram Moolenaar authored
Problem: Vim9: using inalid pointer for error message. Solution: Use the right pointer. (closes #7921)
-
- 05 Mar, 2021 3 commits
-
-
Bram Moolenaar authored
Problem: Vim9: crash when getting the types for a legacy function. Solution: Initialize the type list growarray. (closes #7929)
-
Bram Moolenaar authored
Problem: Test may leave file behind. Solution: Delete the temporary file. Don't profile in the running Vim instance. -
Bram Moolenaar authored
Problem: Tests fail when run as root. Solution: Add a comment mentioning the expected failure. (issue #7919)
-
- 04 Mar, 2021 3 commits
-
-
Bram Moolenaar authored
Problem: 'fillchars' "stl" and "stlnc" items must be single byte. Solution: Accept multi-byte characters. (Christian Wellenbrock, Yegappan Lakshmanan, closes #7927) -
Bram Moolenaar authored
Problem: Second time a preview popup is opened highlight is not set. (Gabriel Dupras) Solution: Apply 'previewpopup' after getting the file. (closes #7928) -
Bram Moolenaar authored
Problem: Vim9: no error if variable is defined for existing function. Solution: Check if name isn't already in use. (closes #7897)
-
- 03 Mar, 2021 4 commits
-
-
Bram Moolenaar authored
Problem: Vim9: Function name is not recognized. Solution: Change lookup_scriptvar() to also find function names. (closes #7770) -
Bram Moolenaar authored
Problem: Vim9: "..=" not always recognized. Solution: Do not consider "..=" to be string concatenation. (closes #7905)
-
Bram Moolenaar authored
Problem: Focus events end Insert mode if 'esckeys' is not set. Solution: Do not enable focus events when 'esckeys' is off. (closes #7926)
-
Bram Moolenaar authored
Problem: Cannot use multibyte characters for folding in 'fillchars'. Solution: Port pull request 11568 to Vim. (Yegappan Lakshmanan, closes #7924)
-
- 02 Mar, 2021 2 commits
-
-
Bram Moolenaar authored
Problem: GUI: star register changed when 'clipboard is "unnamedplus". (Ingo Karkat) Solution: Do not change the star register when 'clipboard' contains "unnamedplus" and not "unnamed". (closes #1516) -
Bram Moolenaar authored
Problem: Not all textprop code is covered by tests. Solution: Add a few more test cases. (Dominique Pellé, closes #7908)
-
- 01 Mar, 2021 1 commit
-
-
Bram Moolenaar authored
Problem: Setting 'winminheigt' does not take tabline into account. Solution: Subtract the tabline from the available height. (closes #7899)
-
- 28 Feb, 2021 2 commits
-
-
Bram Moolenaar authored
Problem: MS-Windows: guifont test fails on Windows XP. Solution: Check windowsversion().
-
Bram Moolenaar authored
Problem: No error if a lambda argument shadows a variable. Solution: Check that the argument name shadows a local, argument or script variable. (closes #7898)
-
- 27 Feb, 2021 5 commits
-
-
Bram Moolenaar authored
Problem: Compiler warning for shadowd variable. Solution: Declare "p" only once.
-
Bram Moolenaar authored
Problem: Vim9: :import with "as" not fully supported. Solution: Implement "as" for more cases.
-
Bram Moolenaar authored
Problem: Vim9: missing test for 8.2.2553. Solution: Add a simple test.
-
Bram Moolenaar authored
Problem: Vim9: exporting a final is not tested. Solution: Add a test.
-
Bram Moolenaar authored
-
- 26 Feb, 2021 1 commit
-
-
Bram Moolenaar authored
Problem: Vim9: Cannot put "|" after "{". Solution: Add the EX_TRLBAR flag. (issue #7904)
-