You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
patch 8.0.1825: might use NULL pointer when out of memory
Problem: Might use NULL pointer when out of memory. (Coverity)
Solution: Handle NULL pointer better.
patch 8.0.1824: Coverity warns for variable that may be uninitialized
Problem: Coverity warns for variable that may be uninitialized.
Solution: Initialize the variable.
patch 8.0.1823: test for terminal stdout redirection is flaky
Problem: Test for terminal stdout redirection is flaky.
Solution: Wait for the job to finish.
patch 8.0.1822: make uninstall does not remove colors/tools
Problem: Make uninstall does not remove colors/tools.
Solution: Add a line to delete the tools directory. (Kazunobu Kuriyama)
patch 8.0.1821: cursor in terminal window moves when pressing CTRL-W
Problem: Cursor in terminal window moves when pressing CTRL-W. (Dominique
Pelle)
Solution: Do not more the cursor or redraw when not in Terminal-Normal mode.
(closesvim#2904)
patch 8.0.1820: terminal window redirecting stdout does not show stderr
Problem: Terminal window redirecting stdout does not show stderr. (Matéo
Zanibelli)
Solution: When stdout is not connected to pty_master_fd then use it for
stderr. (closesvim#2903)
patch 8.0.1819: swap file warning for file with non-existing directory
Problem: Swap file warning for a file in a non-existing directory, if there
is another with the same file name. (Juergen Weigert)
Solution: When expanding the file name fails compare the file names.
patch 8.0.1818: lines remove from wrong buffer when using terminal wi…
…ndow
Problem: Lines remove from wrong buffer when using terminal window.
Solution: Make sure to use tl_buffer.
patch 8.0.1817: a timer may change v:count unexpectedly
Problem: A timer may change v:count unexpectedly.
Solution: Save and restore v:count and similar variables when a timer
callback is invoked. (closesvim#2897)