<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git, branch v8.2.4360</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.4360: Vim9: allowing use of "s:" leads to inconsistencies</title>
<updated>2022-02-12T19:52:25+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-12T19:52:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=a749a42ed25534c88c636e5ab6603f1f97b857a4'/>
<id>a749a42ed25534c88c636e5ab6603f1f97b857a4</id>
<content type='text'>
Problem:    Vim9: allowing use of "s:" leads to inconsistencies.
Solution:   Disallow using "s:" in Vim9 script at the script level.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: allowing use of "s:" leads to inconsistencies.
Solution:   Disallow using "s:" in Vim9 script at the script level.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4359: crash when repeatedly using :retab</title>
<updated>2022-02-12T15:42:18+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-12T15:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=6e28703a8e41f775f64e442c5d11ce1ff599aa3f'/>
<id>6e28703a8e41f775f64e442c5d11ce1ff599aa3f</id>
<content type='text'>
Problem:    crash when repeatedly using :retab.
Solution:   Bail out when the line is getting too long.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    crash when repeatedly using :retab.
Solution:   Bail out when the line is getting too long.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4358: Vim9: line number of exception is not set</title>
<updated>2022-02-12T14:23:17+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-12T14:23:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=90a57168a42048eb7e176a4f9acf607c31e8074f'/>
<id>90a57168a42048eb7e176a4f9acf607c31e8074f</id>
<content type='text'>
Problem:    Vim9: line number of exception is not set.
Solution:   Set the line number before throwing an exception. (closes #9755)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: line number of exception is not set.
Solution:   Set the line number before throwing an exception. (closes #9755)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4357: sticky command modifiers are too sticky</title>
<updated>2022-02-12T13:30:17+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-02-12T13:30:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=2a9b62dfa2fb91a6ede9cb4d146ca47a1db31254'/>
<id>2a9b62dfa2fb91a6ede9cb4d146ca47a1db31254</id>
<content type='text'>
Problem:    sticky command modifiers are too sticky.
Solution:   Do not apply command modifiers to a sourced script. (closes #9751)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    sticky command modifiers are too sticky.
Solution:   Do not apply command modifiers to a sourced script. (closes #9751)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4356: command line completion functions are very long</title>
<updated>2022-02-12T12:03:07+00:00</updated>
<author>
<name>Yegappan Lakshmanan</name>
<email>yegappan@yahoo.com</email>
</author>
<published>2022-02-12T12:03:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=620d8edba01bb2779485718dd1a99ca670ca894b'/>
<id>620d8edba01bb2779485718dd1a99ca670ca894b</id>
<content type='text'>
Problem:    Command line completion functions are very long.
Solution:   Refactor into multiple functions. (Yegappan Lakshmanan,
            closes #9753)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Command line completion functions are very long.
Solution:   Refactor into multiple functions. (Yegappan Lakshmanan,
            closes #9753)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4355: unnecessary call to check_colorcolumn()</title>
<updated>2022-02-12T11:51:25+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2022-02-12T11:51:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=0f7ff851cb721bb3c07261adbf82b591229f530d'/>
<id>0f7ff851cb721bb3c07261adbf82b591229f530d</id>
<content type='text'>
Problem:    Unnecessary call to check_colorcolumn().
Solution:   Remove the call. (Sean Dewar, closes #9748)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Unnecessary call to check_colorcolumn().
Solution:   Remove the call. (Sean Dewar, closes #9748)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4354: dynamic loading of libsodium not handled properly</title>
<updated>2022-02-12T11:18:37+00:00</updated>
<author>
<name>K.Takata</name>
<email>kentkt@csc.jp</email>
</author>
<published>2022-02-12T11:18:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=d68b2fc034fa3c824e0d4d53745cfe9eb8c5ecd6'/>
<id>d68b2fc034fa3c824e0d4d53745cfe9eb8c5ecd6</id>
<content type='text'>
Problem:    Dynamic loading of libsodium not handled properly.
Solution:   Fix has() and :version. Show an error message when loading fails.
            Fix memory leaks. (Ken Takata, closes #9754)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Dynamic loading of libsodium not handled properly.
Solution:   Fix has() and :version. Show an error message when loading fails.
            Fix memory leaks. (Ken Takata, closes #9754)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4353: CI does not use the latest Lua and Python</title>
<updated>2022-02-12T10:53:07+00:00</updated>
<author>
<name>Philip H</name>
<email>47042125+pheiduck@users.noreply.github.com</email>
</author>
<published>2022-02-12T10:53:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=18f7593e57730e6de7c2cf47c87e44252cfbb61e'/>
<id>18f7593e57730e6de7c2cf47c87e44252cfbb61e</id>
<content type='text'>
Problem:    CI does not use the latest Lua and Python.
Solution:   Use Lua 5.4.2 and Python 3.10. (closes #9744)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    CI does not use the latest Lua and Python.
Solution:   Use Lua 5.4.2 and Python 3.10. (closes #9744)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4352: ReScript files are not recognized</title>
<updated>2022-02-12T10:33:56+00:00</updated>
<author>
<name>Ananda Umamil</name>
<email>zweimach@zweimach.org</email>
</author>
<published>2022-02-12T10:33:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=0c3cc2fec31521b0697edc406f85b7a43e979860'/>
<id>0c3cc2fec31521b0697edc406f85b7a43e979860</id>
<content type='text'>
Problem:    ReScript files are not recognized.
Solution:   Add the *.res and *.resi patterns. (Ananda Umamil, closes #9752)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    ReScript files are not recognized.
Solution:   Add the *.res and *.resi patterns. (Ananda Umamil, closes #9752)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.4351: no coverage is measured on MS-Windows CI</title>
<updated>2022-02-12T10:13:13+00:00</updated>
<author>
<name>ichizok</name>
<email>gclient.gaap@gmail.com</email>
</author>
<published>2022-02-12T10:13:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=41ee5b191376ee3c0394664de5a7e7d83974aaa4'/>
<id>41ee5b191376ee3c0394664de5a7e7d83974aaa4</id>
<content type='text'>
Problem:    No coverage is measured on MS-Windows CI.
Solution:   Enable coverage on MS-Windows. (Ozaki Kiichi, closes #9750)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    No coverage is measured on MS-Windows CI.
Solution:   Enable coverage on MS-Windows. (Ozaki Kiichi, closes #9750)
</pre>
</div>
</content>
</entry>
</feed>
