summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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)
2022-11-29patch 9.0.0974: even when Esc is encoded a timeout is usedv9.0.0974Bram Moolenaar
Problem: Even when Esc is encoded a timeout is used. Solution: Use K_ESC when an encoded Esc is found.
2022-11-29patch 9.0.0973: Kitty keyboard protocol key with NumLock not decodedv9.0.0973Bram Moolenaar
Problem: Kitty keyboard protocol key not decoded when it has an unsupported modifier, such as NumLock. Solution: Accept a key with any modifier. (closes #11638)
2022-11-29patch 9.0.0972: build failure on some systemsv9.0.0972Bram Moolenaar
Problem: Build failure on some systems. Solution: Adjust #ifdefs related to the termresponse feature.
2022-11-29patch 9.0.0971: escape sequences not recognized without termresponse featurev9.0.0971Bram Moolenaar
Problem: Escape sequences not recognized without the termresponse feature. Solution: Recognize escape sequences to avoid display mess up.
2022-11-29patch 9.0.0970: Coverity warns for uninitialized variablev9.0.0970Bram Moolenaar
Problem: Coverity warns for uninitialized variable. Solution: Initialize "ren_ret".
2022-11-28patch 9.0.0969: matchparen highlight is not updated when switching buffersv9.0.0969Bram Moolenaar
Problem: Matchparen highlight is not updated when switching buffers. Solution: Listen to the BufLeave and the BufWinEnter autocmd events. (closes #11626)
2022-11-28patch 9.0.0968: GUI mouse event test is a bit flakyv9.0.0968Bram Moolenaar
Problem: GUI mouse event test is a bit flaky. Solution: Mark the test case as flaky. Move test function failure checks to a separate test function.
2022-11-28patch 9.0.0967: leaking memory from autocmd windowsv9.0.0967Bram Moolenaar
Problem: Leaking memory from autocmd windows. Solution: Free window when auc_win is not NULL.
2022-11-28patch 9.0.0966: some compilers don't allow a declaration after a labelv9.0.0966Bram Moolenaar
Problem: Some compilers don't allow a declaration after a label. Solution: Move the declaration to the start of the block. (John Marriott)
2022-11-28patch 9.0.0965: using one window for executing autocommands is insufficientv9.0.0965Bram Moolenaar
Problem: Using one window for executing autocommands is insufficient. Solution: Use up to five windows for executing autocommands.
2022-11-28patch 9.0.0964: status line not redrawn when 'splitkeep' is "screen"v9.0.0964Luuk van Baal
Problem: Status line of other window not redrawn when dragging it when 'splitkeep' is set to "screen". Solution: Set w_redr_status earlier. (Luuk van Baal, closes #11635, closes #11632)
2022-11-28patch 9.0.0963: function name does not match autocmd event namev9.0.0963zeertzjq
Problem: Function name does not match autocmd event name. Solution: Rename "optionsset" to "optionset". (closes #11630)
2022-11-27patch 9.0.0962: virtual text below cannot be placed below empty linesv9.0.0962porygonisaduck
Problem: Virtual text below cannot be placed below empty lines. Solution: Add one character. (James Alvarado, closes #11606, closes #11520)
2022-11-27patch 9.0.0961: using deletebufline() may jump to another windowv9.0.0961Bram Moolenaar
Problem: Using deletebufline() may jump to another window. Solution: Do not use a window where the buffer was only in the past. (closes #11594)
2022-11-27patch 9.0.0960: error when using the "Spelling / Find More Languages" menuv9.0.0960Bram Moolenaar
Problem: Error when using the "Tools / Spelling / Find More Languages" menu. Solution: Remove "<SID>". Reset "g:menutrans_set_lang_to" when 'encoding' changes. (closes #11625)
2022-11-27patch 9.0.0959: error when using the "File Settings / Text Width" menuv9.0.0959Bram Moolenaar
Problem: Error when using the "File Settings / Text Width" menu. Solution: Use str2nr(). (closes #11624)
2022-11-27patch 9.0.0958: messages test is flakyv9.0.0958Bram Moolenaar
Problem: Messages test is flaky. Solution: Add a short delay.
2022-11-27patch 9.0.0957: tests fail without the terminal featurev9.0.0957Bram Moolenaar
Problem: Tests fail without the terminal feature. Solution: Move functions to another utility script.
2022-11-27patch 9.0.0956: terminal tests fail when using key with modifierv9.0.0956Bram Moolenaar
Problem: Terminal tests fail when using key with modifier. Solution: Use the modifyOtherKeys encoding when using RunVimInTerminal().
2022-11-27patch 9.0.0955: libvterm does not support the XTQMODKEYS requestv9.0.0955Bram Moolenaar
Problem: Libvterm does not support the XTQMODKEYS request. Solution: Implement the XTQMODKEYS request and response. Update the keycode check results.