summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-12-06patch 9.0.1024: CI doesn't use the latest FreeBSD versionv9.0.1024Philip H
Problem: CI doesn't use the latest FreeBSD version. Solution: Go from 12.3 to 12.4. (closes #11423)
2022-12-06patch 9.0.1023: MS-Windows: dynamic loading of libsodium doesn't workv9.0.1023K.Takata
Problem: MS-Windows: dynamic loading of libsodium doesn't work. Solution: Add "randombytes_random". (Ken Takata, closes #11667)
2022-12-06patch 9.0.1022: suspend test fails on Mac OS when suspending Vimv9.0.1022Bram Moolenaar
Problem: Suspend test fails on Mac OS when suspending Vim. Solution: Make 'keyprotocol' empty.
2022-12-06patch 9.0.1021: test trips over g:namev9.0.1021Bram Moolenaar
Problem: Test trips over g:name. Solution: Delete g:name after using it.
2022-12-06patch 9.0.1020: tests call GetSwapFileList() before it is definedv9.0.1020Bram Moolenaar
Problem: Tests call GetSwapFileList() before it is defined. Solution: Move the call to after defining the function. (Christopher Plewright)
2022-12-06patch 9.0.1019: 'smoothscroll' and virtual text above don't work togetherv9.0.1019Bram Moolenaar
Problem: 'smoothscroll' and virtual text above don't work together. (Yee Cheng Chin) Solution: Skip virtual text above when w_skipcol is non-zero. (closes #11665)
2022-12-06patch 9.0.1018: suspend test still fails on Mac OSv9.0.1018Bram Moolenaar
Problem: Suspend test still fails on Mac OS. Solution: Make 'keyprotocol' empty.
2022-12-06patch 9.0.1017: test for srand() fails on MS-Windowsv9.0.1017Bram Moolenaar
Problem: Test for srand() fails on MS-Windows. Solution: Do not expect the same result a second time.
2022-12-05patch 9.0.1016: screenpos() does not count filler lines for diff modev9.0.1016Bram Moolenaar
Problem: screenpos() does not count filler lines for diff mode. Solution: Add filler lines. (closes 11658)
2022-12-05patch 9.0.1015: without /dev/urandom srand() seed is too predictablev9.0.1015Yasuhiro Matsumoto
Problem: Without /dev/urandom srand() seed is too predictable. Solution: Use micro seconds and XOR with process ID. (Yasuhiro Matsumoto, closes #11656)
2022-12-05patch 9.0.1014: zir files are not recognizedv9.0.1014Bram Moolenaar
Problem: Zir files are not recognized. Solution: Add a pattern for Zir files. (closes #11664)
2022-12-05patch 9.0.1013: suspend test often fails on Mac OSv9.0.1013Bram Moolenaar
Problem: Suspend test often fails on Mac OS. Solution: Make t_RP empty.
2022-12-05patch 9.0.1012: tests may get stuck in buffer with swap filev9.0.1012Bram Moolenaar
Problem: Tests may get stuck in buffer with swap file. Solution: Bail out when bwipe! doesn't get another buffer.
2022-12-05patch 9.0.1011: ml_get error when using screenpos()v9.0.1011Bram Moolenaar
Problem: ml_get error when using screenpos(). Solution: Give an error for the line number. (closes #11661)
2022-12-05patch 9.0.1010: stray warnings for existing swap filesv9.0.1010Bram Moolenaar
Problem: Stray warnings for existing swap files. Solution: Wipe out the buffer until it has no name and no swap file.
2022-12-05patch 9.0.1009: test for catch after interrupt is flaky on MS-Windowsv9.0.1009Bram Moolenaar
Problem: Test for catch after interrupt is flaky on MS-Windows. Solution: Mark the test as flaky.
2022-12-05patch 9.0.1008: test for swapfilelist() fails on MS-Windowsv9.0.1008Bram Moolenaar
Problem: Test for swapfilelist() fails on MS-Windows. Solution: Only check the tail of the path. Mark a test as flaky.
2022-12-05patch 9.0.1007: there is no way to get a list of swap file namesv9.0.1007Bram Moolenaar
Problem: There is no way to get a list of swap file names. Solution: Add the swapfilelist() function. Use it in the test script to clean up. Remove deleting individual swap files.
2022-12-04patch 9.0.1006: suspend test still sometimes fails on MacOSv9.0.1006Bram Moolenaar
Problem: Suspend test still sometimes fails on MacOS. Solution: Wait a little while for terminal responses.
2022-12-04patch 9.0.1005: a failed test may leave a swap file behindv9.0.1005Bram Moolenaar
Problem: A failed test may leave a swap file behind. Solution: Delete the swap file to avoid another test to fail. Use another file name.
2022-12-04patch 9.0.1004: suspend test sometimes fails on MacOSv9.0.1004Bram Moolenaar
Problem: Suspend test sometimes fails on MacOS. Solution: Wait a short while for terminal responses.
2022-12-04patch 9.0.1003: tiny build failsv9.0.1003Bram Moolenaar
Problem: Tiny build fails. Solution: Remove #ifdef from error message.
2022-12-04patch 9.0.1002: command list test failsv9.0.1002Bram Moolenaar
Problem: Command list test fails. Solution: Add commands added to the list.
2022-12-04patch 9.0.1001: classes are not documented or implemented yetv9.0.1001Bram Moolenaar
Problem: Classes are not documented or implemented yet. Solution: Make the first steps at documenting Vim9 objects, classes and interfaces. Make initial choices for the syntax. Add a skeleton implementation. Add "public" and "this" in the command table.
2022-12-03patch 9.0.1000: with 'smoothscroll' skipcol may be reset unnecessarilyv9.0.1000Bram Moolenaar
Problem: With 'smoothscroll' skipcol may be reset unnecessarily. Solution: Check the line does actually fit in the window.
2022-12-03patch 9.0.0999: memory may leakv9.0.0999Bram Moolenaar
Problem: Memory may leak. Solution: Free the sound callback function name if it was allocated.
2022-12-03patch 9.0.0998: "gk" may reset skipcol when not neededv9.0.0998Bram Moolenaar
Problem: "gk" may reset skipcol when not needed. Solution: Only reset skipcol if the cursor column is less.
2022-12-03patch 9.0.0997: Coverity warns for dead codev9.0.0997Bram Moolenaar
Problem: Coverity warns for dead code. Solution: Don't use ASCII_ISUPPER() for a negative value.
2022-12-03patch 9.0.0996: if 'keyprotocol' is empty "xterm" still uses modifyOtherKeysv9.0.0996Bram Moolenaar
Problem: If 'keyprotocol' is empty "xterm" still uses modifyOtherKeys. Solution: Remove t_TI, t_RK and t_TE from the "xterm" builtin termcap and let the default value of 'keyprotocol' add those.
2022-12-02patch 9.0.0995: padding before virtual text is highlightedv9.0.0995Bram Moolenaar
Problem: Padding before virtual text below is highlighted when 'number' and 'nowrap' are set. Solution: Save and restore n_attr_skip. (closes #11643)
2022-12-02patch 9.0.0994: tests for empty prop type name failv9.0.0994Bram Moolenaar
Problem: Tests for empty prop type name fail. Solution: Correct the error number.
2022-12-02patch 9.0.0993: display errors when adding or removing text property typev9.0.0993Bram Moolenaar
Problem: Display errors when adding or removing text property type. Solution: Perform a full redraw. Only use text properties for which the type is defined. (closes #11655)
2022-12-02patch 9.0.0992: Vim9 script: get E1096 when comment follows returnv9.0.0992mityu
Problem: Vim9 script: get E1096 when comment follows return. Solution: Adjust condition for return without expression. (closes #11654)
2022-12-02patch 9.0.0991: crash when reading help index with various options setv9.0.0991Bram Moolenaar
Problem: Crash when reading help index with various options set. (Marius Gedminas) Solution: Do not set wlv.c_extra to NUL when wlv.p_extra is NULL. (closes #11651)
2022-12-02patch 9.0.0990: callback name argument is changed by setqflist()v9.0.0990Bram Moolenaar
Problem: Callback name argument is changed by setqflist(). Solution: Use the expanded function name for the callback, do not store it in the argument. (closes #11653)
2022-12-02patch 9.0.0989: popupwin test is more flaky on MacOSv9.0.0989Bram Moolenaar
Problem: Popupwin test is more flaky on MacOS. Solution: Use a longer wait time.
2022-12-02patch 9.0.0988: using feedkeys() does not show up in a channel logv9.0.0988Bram Moolenaar
Problem: Using feedkeys() does not show up in a channel log. Solution: Add ch_log() calls and clean up the code.
2022-12-02patch 9.0.0987: file missing from list of distributed filesv9.0.0987Bram Moolenaar
Problem: File missing from list of distributed files. Solution: Add logfile.pro to list of distributed files.
2022-12-02patch 9.0.0986: build failure with tiny versionv9.0.0986Bram Moolenaar
Problem: Build failure with tiny version. Solution: Add #ifdef.
2022-12-02patch 9.0.0985: when using kitty keyboard protocol function keys may not workv9.0.0985Bram Moolenaar
Problem: When using kitty keyboard protocol function keys may not work. (Kovid Goyal) Solution: Recognize CSI ending in [ABCDEFHPQRS] also when the termcap entries are not specified. (closes #11648)
2022-12-01patch 9.0.0984: GUI: remote_foreground() does not always workv9.0.0984Bram Moolenaar
Problem: GUI: remote_foreground() does not always work. (Ron Aaron) Solution: For GTK use gtk_window_set_keep_above(). (issue #11641)
2022-12-01patch 9.0.0983: stray characters displayed when starting the GUIv9.0.0983Bram Moolenaar
Problem: Stray characters displayed when starting the GUI. Solution: Add t_RK to the list of terminal options.
2022-12-01patch 9.0.0982: 'cursorline' not drawn before virtual text belowv9.0.0982Bram Moolenaar
Problem: 'cursorline' not drawn before virtual text below. Solution: Add the 'cursorline' attribute to the empty space. (closes #11647)
2022-12-01patch 9.0.0981: build error in tiny versionv9.0.0981Bram Moolenaar
Problem: Build error in tiny version. Solution: Add #ifdef.
2022-12-01patch 9.0.0980: the keyboard state response may end up in a shell commandv9.0.0980Bram Moolenaar
Problem: The keyboard state response may end up in a shell command. Solution: Only request the keyboard protocol state when the typeahead is empty, no more commands are following and not exiting. Add the t_RK termcap entry for this.
2022-12-01patch 9.0.0979: ch_log() text can be hard to find in the log filev9.0.0979Bram Moolenaar
Problem: ch_log() text can be hard to find in the log file. Solution: Prepend "ch_log()" to the text.
2022-11-30patch 9.0.0978: build errors without the +channel featurev9.0.0978Bram Moolenaar
Problem: Build errors without the +channel feature. (John Marriott) Solution: Adjust #ifdefs.
2022-11-30patch 9.0.0977: it is not easy to see what client-server commands are doingv9.0.0977Bram Moolenaar
Problem: It is not easy to see what client-server commands are doing. Solution: Add channel log messages if ch_log() is available. Move the channel logging and make it available with the +eval feature.
2022-11-30patch 9.0.0976: enabling the kitty keyboard protocol uses push/popv9.0.0976Bram Moolenaar
Problem: Enabling the kitty keyboard protocol uses push/pop. Solution: Use the start/stop codes to avoid unpredictable behavior.
2022-11-29patch 9.0.0975: virtual text below empty line misplaced when 'number' setv9.0.0975Bram Moolenaar
Problem: Virtual text below an empty line is misplaced when 'number' is set. Solution: Adjust the computations. (closes #11629)