| a1198124 | 20-Nov-2021 |
mityu <[email protected]> |
patch 8.2.3629: command completion in cmdline window uses global commands
Problem: Command completion in cmdline window uses global user commands, not local commands for the window wh
patch 8.2.3629: command completion in cmdline window uses global commands
Problem: Command completion in cmdline window uses global user commands, not local commands for the window where it was opened from. Solution: Use local commands. (closes #9168)
show more ...
|
| 87fd0924 | 20-Nov-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3628: looking terminal colors is a bit slow
Problem: Looking terminal colors is a bit slow. Solution: Cache the terminal colors. (closes #9130, closes #9058) |
| 3ad69532 | 19-Nov-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Problem: When renaming a terminal buffer the status text is not updated. Solution: Clear the cached status text when r
patch 8.2.3624: when renaming a terminal buffer status text is not updated
Problem: When renaming a terminal buffer the status text is not updated. Solution: Clear the cached status text when renaming a terminal buffer. (closes #9162)
show more ...
|
| b3a29558 | 19-Nov-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3620: memory leak reported in libtlib
Problem: Memory leak reported in libtlib. Solution: Call del_curterm() when cleaning up memory. Rename term.h to termdefs.h to avoid
patch 8.2.3620: memory leak reported in libtlib
Problem: Memory leak reported in libtlib. Solution: Call del_curterm() when cleaning up memory. Rename term.h to termdefs.h to avoid a name clash.
show more ...
|
| 777175b0 | 18-Nov-2021 |
Yegappan Lakshmanan <[email protected]> |
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Problem: Cannot use a lambda for 'operatorfunc'. Solution: Support using a lambda or partial. (Yegappan Lakshmanan, closes #87
patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Problem: Cannot use a lambda for 'operatorfunc'. Solution: Support using a lambda or partial. (Yegappan Lakshmanan, closes #8775)
show more ...
|
| 6555500b | 17-Nov-2021 |
Bakudankun <[email protected]> |
patch 8.2.3614: zindex of popup windows not used when redrawing popup menu
Problem: zindex of popup windows not used when redrawing popup menu. Solution: Check the zindex when redrawing the pop
patch 8.2.3614: zindex of popup windows not used when redrawing popup menu
Problem: zindex of popup windows not used when redrawing popup menu. Solution: Check the zindex when redrawing the popup menu. (closes #9129, closes #9089)
show more ...
|
| 3075a455 | 17-Nov-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3609: internal error when ModeChanged is triggered recursively
Problem: Internal error when ModeChanged is triggered when v:event is already in use. Solution: Save and res
patch 8.2.3609: internal error when ModeChanged is triggered recursively
Problem: Internal error when ModeChanged is triggered when v:event is already in use. Solution: Save and restore v:event if needed.
show more ...
|
| 7f13b24a | 14-Nov-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Problem: Directory is wrong after executing "lcd" with win_execute(). Solution: Correct the directory when going back
patch 8.2.3593: directory is wrong after executing "lcd" with win_execute()
Problem: Directory is wrong after executing "lcd" with win_execute(). Solution: Correct the directory when going back to the original window. (closes #9132)
show more ...
|
| a0fca172 | 13-Nov-2021 |
Drew Vogel <dvogel@github> |
patch 8.2.3590: test for v:colornames sometimes fails
Problem: Test for v:colornames sometimes fails. (Dominique Pellé) Solution: Check features. Clear v:colornames between tests. (Drew Vogel,
patch 8.2.3590: test for v:colornames sometimes fails
Problem: Test for v:colornames sometimes fails. (Dominique Pellé) Solution: Check features. Clear v:colornames between tests. (Drew Vogel, closes #9105, closes #9073)
show more ...
|
| d1a8d658 | 03-Nov-2021 |
Yegappan Lakshmanan <[email protected]> |
patch 8.2.3578: manipulating highlighting is complicated
Problem: Manipulating highlighting is complicated. Solution: Add the hlget() and hlset() functions. (Yegappan Lakshmanan, cl
patch 8.2.3578: manipulating highlighting is complicated
Problem: Manipulating highlighting is complicated. Solution: Add the hlget() and hlset() functions. (Yegappan Lakshmanan, closes #9039)
show more ...
|
| e30d1025 | 24-Oct-2021 |
Drew Vogel <dvogel@github> |
patch 8.2.3562: cannot add color names
Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761) |
| 844fb64a | 23-Oct-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3560: using freed memory with lambda
Problem: Using freed memory with lambda. Solution: Do not free lines early, keep them until the expression is finished. |
| 21c1a0c2 | 17-Oct-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3530: ":buf \{a}" fails while ":edit \{a}" works
Problem: ":buf \{a}" fails while ":edit \{a}" works. Solution: Unescape "\{". (closes #8917) |
| 4eeedc09 | 16-Oct-2021 |
Dusan Popovic <[email protected]> |
patch 8.2.3524: GUI: ligatures are not used
Problem: GUI: ligatures are not used. Solution: Add the 'guiligatures' option. (Dusan Popovic, closes #8933) |
| 7b5f45be | 15-Oct-2021 |
Milly <[email protected]> |
patch 8.2.3516: terminal window does not have transparent background
Problem: Terminal window does not have transparent background when 'termguicolors' is used. Solution: Fix the ba
patch 8.2.3516: terminal window does not have transparent background
Problem: Terminal window does not have transparent background when 'termguicolors' is used. Solution: Fix the background color. (closes #2361, closes #9002)
show more ...
|
| 0a7984af | 14-Oct-2021 |
Leah Neukirchen <[email protected]> |
patch 8.2.3510: changes are only detected with one second accuracy
Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen,
patch 8.2.3510: changes are only detected with one second accuracy
Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen, closes #8873, closes #8875)
show more ...
|
| 7b829268 | 13-Oct-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Problem: Vim9: using g:pat:cmd is confusing. Solution: Do not recognize g: as the :global command. Also for s:pat:repl. (closes #
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Problem: Vim9: using g:pat:cmd is confusing. Solution: Do not recognize g: as the :global command. Also for s:pat:repl. (closes #8982)
show more ...
|
| 78eb9cce | 14-Sep-2021 |
Christian Brabandt <[email protected]> |
patch 8.2.3439: deleted lines go to wrong yank register
Problem: Deleted lines go to wrong yank register. Solution: Reset y_append when not calling get_yank_register(). (Christian B
patch 8.2.3439: deleted lines go to wrong yank register
Problem: Deleted lines go to wrong yank register. Solution: Reset y_append when not calling get_yank_register(). (Christian Brabandt, closes #8872)
show more ...
|
| 5dfe4674 | 14-Sep-2021 |
Yegappan Lakshmanan <[email protected]> |
patch 8.2.3438: cannot manipulate blobs
Problem: Cannot manipulate blobs. Solution: Add blob2list() and list2blob(). (Yegappan Lakshmanan, closes #8868) |
| 28e591dd | 12-Sep-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3434: function prototype for trigger_modechanged() is incomplete
Problem: Function prototype for trigger_modechanged() is incomplete. Solution: Add "void". |
| f1e8876f | 12-Sep-2021 |
=?UTF-8?q?Magnus=20Gro=C3=9F?= <[email protected]> |
patch 8.2.3430: no generic way to trigger an autocommand on mode change
Problem: No generic way to trigger an autocommand on mode change. Solution: Add the ModeChanged autocommand event. (Magnu
patch 8.2.3430: no generic way to trigger an autocommand on mode change
Problem: No generic way to trigger an autocommand on mode change. Solution: Add the ModeChanged autocommand event. (Magnus Gross, closes #8856)
show more ...
|
| 80c88eac | 08-Sep-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3414: fullcommand() gives wrong name with buffer-local user command
Problem: fullcommand() gives the wrong name if there is a buffer-local user command. (Naohiro Ono) Soluti
patch 8.2.3414: fullcommand() gives wrong name with buffer-local user command
Problem: fullcommand() gives the wrong name if there is a buffer-local user command. (Naohiro Ono) Solution: Use a separate function to get the user command name. (closes #8840)
show more ...
|
| 26a4484d | 02-Sep-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3395: Vim9: expression breakpoint not checked in :def function
Problem: Vim9: expression breakpoint not checked in :def function. Solution: Always compile a function for debugging if
patch 8.2.3395: Vim9: expression breakpoint not checked in :def function
Problem: Vim9: expression breakpoint not checked in :def function. Solution: Always compile a function for debugging if there is an expression breakpoint. (closes #8803)
show more ...
|
| 4799cef8 | 25-Aug-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3376: Vim9: no warning that "@r" does not do anything
Problem: Vim9: no warning that "@r" does not do anything. Solution: Give a "no effect" error. (closes #8779) |
| bf5f2878 | 21-Aug-2021 |
Bram Moolenaar <[email protected]> |
patch 8.2.3365: Vim9: cannot use option for all operations
Problem: Vim9: cannot use option for all operations. Solution: Recognize more operations. (closes #8779) |