<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src, branch v8.2.4488</title>
<subtitle>github.com: vim/vim.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/'/>
<entry>
<title>patch 8.2.4488: build error with +eval but without +channel or +job</title>
<updated>2022-03-01T19:52:48+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-03-01T19:52:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f6b0c79742727948edee78cb1a3a9a4e3be8b0fd'/>
<id>f6b0c79742727948edee78cb1a3a9a4e3be8b0fd</id>
<content type='text'>
Problem:    Build error with +eval but without +channel or +job.
Solution:   Add #ifdef. (John Marriott)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Build error with +eval but without +channel or +job.
Solution:   Add #ifdef. (John Marriott)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4487: Vim9: cannot compare with v:null</title>
<updated>2022-03-01T19:23:24+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-03-01T19:23:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=7a2222487507eb13cccdb9a66397092775d62b8c'/>
<id>7a2222487507eb13cccdb9a66397092775d62b8c</id>
<content type='text'>
Problem:    Vim9: cannot compare with v:null.
Solution:   Allow comparing anything with v:null. (closes #9866)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: cannot compare with v:null.
Solution:   Allow comparing anything with v:null. (closes #9866)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4486: MS-Windows GUI: slow scrolling with maximized window</title>
<updated>2022-03-01T16:02:26+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-03-01T16:02:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f01af9c4e6f1438cd1112cfff42f3837028c7846'/>
<id>f01af9c4e6f1438cd1112cfff42f3837028c7846</id>
<content type='text'>
Problem:    MS-Windows GUI: slow scrolling with maximized window.
Solution:   Use a better way to check the window is on screen. (Ken Takata,
            closes #9865)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    MS-Windows GUI: slow scrolling with maximized window.
Solution:   Use a better way to check the window is on screen. (Ken Takata,
            closes #9865)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4485: compiler warning for uninitialized variable</title>
<updated>2022-02-28T21:02:19+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-28T21:02:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=3e7637bd266da43c9158f0e1cfe3f7f7843d7147'/>
<id>3e7637bd266da43c9158f0e1cfe3f7f7843d7147</id>
<content type='text'>
Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize the variable. (John Marriott)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize the variable. (John Marriott)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4484: Vim9: some error messages are not tested</title>
<updated>2022-02-28T20:55:02+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-28T20:55:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=1983f1aa315711852174be1b7089f71e24c19e27'/>
<id>1983f1aa315711852174be1b7089f71e24c19e27</id>
<content type='text'>
Problem:    Vim9: some error messages are not tested.
Solution:   Add a few more test cases.  Delete dead code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: some error messages are not tested.
Solution:   Add a few more test cases.  Delete dead code.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4483: command completion makes two rounds to collect matches</title>
<updated>2022-02-28T13:28:38+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2022-02-28T13:28:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=5de4c4372d4366bc85cb66efb3e373439b9471c5'/>
<id>5de4c4372d4366bc85cb66efb3e373439b9471c5</id>
<content type='text'>
Problem:    Command completion makes two rounds to collect matches.
Solution:   Use a growarray to collect matches. (Yegappan Lakshmanan,
            closes #9860)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Command completion makes two rounds to collect matches.
Solution:   Use a growarray to collect matches. (Yegappan Lakshmanan,
            closes #9860)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4482: no fuzzy cmdline completion for user defined completion</title>
<updated>2022-02-27T21:03:21+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2022-02-27T21:03:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=afd4ae35d66b2e7732eceb5ad9f6b4ece6b7c64c'/>
<id>afd4ae35d66b2e7732eceb5ad9f6b4ece6b7c64c</id>
<content type='text'>
Problem:    No fuzzy cmdline completion for user defined completion.
Solution:   Add fuzzy completion for user defined completion. (Yegappan
            Lakshmanan, closes #9858)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    No fuzzy cmdline completion for user defined completion.
Solution:   Add fuzzy completion for user defined completion. (Yegappan
            Lakshmanan, closes #9858)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4481: cmdline popup menu not removed when 'lazyredraw' is set</title>
<updated>2022-02-27T14:28:31+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-27T14:28:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=5c52be40fbab14e050d7494d85be9039f07f7f8f'/>
<id>5c52be40fbab14e050d7494d85be9039f07f7f8f</id>
<content type='text'>
Problem:    Cmdline popup menu not removed when 'lazyredraw' is set.
Solution:   Temporarily reset 'lazyredraw' when removing the popup menu.
            (closes #9857)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Cmdline popup menu not removed when 'lazyredraw' is set.
Solution:   Temporarily reset 'lazyredraw' when removing the popup menu.
            (closes #9857)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4480: suspending with CTRL-Z does not work on Android</title>
<updated>2022-02-27T12:31:52+00:00</updated>
<author>
<name>xtkoba</name>
<email>69125751+xtkoba@users.noreply.github.com</email>
</author>
<published>2022-02-27T12:31:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=cbef12e60b2c5a4f026172ab9873deaab2e70cf2'/>
<id>cbef12e60b2c5a4f026172ab9873deaab2e70cf2</id>
<content type='text'>
Problem:    Suspending with CTRL-Z does not work on Android.
Solution:   Do not handle SIGTSTP. (closes #9854)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Suspending with CTRL-Z does not work on Android.
Solution:   Do not handle SIGTSTP. (closes #9854)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4479: no fuzzy completieon for maps and abbreviations</title>
<updated>2022-02-27T12:07:30+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2022-02-27T12:07:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=6caeda2fce4bccac2dd43ca9fee1d32ee96b708d'/>
<id>6caeda2fce4bccac2dd43ca9fee1d32ee96b708d</id>
<content type='text'>
Problem:    No fuzzy completieon for maps and abbreviations.
Solution:   Fuzzy complete maps and abbreviations. (Yegappan Lakshmanan,
            closes #9856)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    No fuzzy completieon for maps and abbreviations.
Solution:   Fuzzy complete maps and abbreviations. (Yegappan Lakshmanan,
            closes #9856)
</pre>
</div>
</content>
</entry>
</feed>
