<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/ftplugin, branch mix_20240309</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>vim-patch:e93afc2e6126</title>
<updated>2024-03-03T09:38:58+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-03-02T18:29:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=bf695b5ef436b9fb8cb0872b05aa2e0e5e2ee110'/>
<id>bf695b5ef436b9fb8cb0872b05aa2e0e5e2ee110</id>
<content type='text'>
runtime(r,rhelp,rmd,rnoweb,rrst): Update ftplugin, browsefilter labels (vim/vim#14126)

Use the standard format for browsefilter labels:
  "File Description (*.ext1, *.ext2, *.ext3)"

https://github.com/vim/vim/commit/e93afc2e612647e79e1082096ffd6c61e01ac691

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(r,rhelp,rmd,rnoweb,rrst): Update ftplugin, browsefilter labels (vim/vim#14126)

Use the standard format for browsefilter labels:
  "File Description (*.ext1, *.ext2, *.ext3)"

https://github.com/vim/vim/commit/e93afc2e612647e79e1082096ffd6c61e01ac691

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:e84d2d4432cd</title>
<updated>2024-02-28T09:56:58+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-02-28T09:38:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=07b4b7524fc7faefb69e5c94d2512eb0807f0593'/>
<id>07b4b7524fc7faefb69e5c94d2512eb0807f0593</id>
<content type='text'>
runtime(sh): Update ftplugin, fix vim/vim#14101 (vim/vim#14102)

Add the 'b' flag to 'comments', so that the shebang line is not detected as comment.

Fixes vim/vim#14101.

https://github.com/vim/vim/commit/e84d2d4432cd6e43f2bb300d02abc90d551bcf4a

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(sh): Update ftplugin, fix vim/vim#14101 (vim/vim#14102)

Add the 'b' flag to 'comments', so that the shebang line is not detected as comment.

Fixes vim/vim#14101.

https://github.com/vim/vim/commit/e84d2d4432cd6e43f2bb300d02abc90d551bcf4a

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:f9ca139e3aa1 (#27554)</title>
<updated>2024-02-20T22:30:18+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2024-02-20T22:30:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=9bb046d1be5aa9ba0482b2cad050b286d4b78978'/>
<id>9bb046d1be5aa9ba0482b2cad050b286d4b78978</id>
<content type='text'>
runtime(misc): announce adoption of various runtime files

https://github.com/vim/vim/commit/f9ca139e3aa12dd03177ebba5eedcee4f0836f27

Co-authored-by: Christian Brabandt &lt;cb@256bit.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(misc): announce adoption of various runtime files

https://github.com/vim/vim/commit/f9ca139e3aa12dd03177ebba5eedcee4f0836f27

Co-authored-by: Christian Brabandt &lt;cb@256bit.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>feat(help): hide filename of "gO" outline using conceal #27547</title>
<updated>2024-02-20T11:57:13+00:00</updated>
<author>
<name>itchyny</name>
<email>itchyny@cybozu.co.jp</email>
</author>
<published>2024-02-20T11:57:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ddda5e0a488bce19c86e04fa823069b755fac779'/>
<id>ddda5e0a488bce19c86e04fa823069b755fac779</id>
<content type='text'>
Help outlines, invoked by `gO`, displays the help section titles in the
location list window. This feature is implemented by setting the buffer
lines after opening the window, but this implementation breaks the
assumption that the quickfix window texts are consistently constructed
by the quickfix list items. I think we can use the conceal feature here.
Using conceal here improves interoperability between quickfix plugins,
and also simplifies the outline implementation.

Originally reported at https://github.com/itchyny/vim-qfedit/issues/12</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Help outlines, invoked by `gO`, displays the help section titles in the
location list window. This feature is implemented by setting the buffer
lines after opening the window, but this implementation breaks the
assumption that the quickfix window texts are consistently constructed
by the quickfix list items. I think we can use the conceal feature here.
Using conceal here improves interoperability between quickfix plugins,
and also simplifies the outline implementation.

Originally reported at https://github.com/itchyny/vim-qfedit/issues/12</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:1da0e8581671</title>
<updated>2024-02-15T09:00:59+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-02-14T23:12:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=989312ed8435075947fcb5f1c6899b43519c37f6'/>
<id>989312ed8435075947fcb5f1c6899b43519c37f6</id>
<content type='text'>
runtime(asciidoc): include basic ftplugin

closes: vim/vim#13873

https://github.com/vim/vim/commit/1da0e85816718a1d45ca60b3581c62df4e352c91

Co-authored-by: Luca Saccarola &lt;github.e41mv@aleeas.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(asciidoc): include basic ftplugin

closes: vim/vim#13873

https://github.com/vim/vim/commit/1da0e85816718a1d45ca60b3581c62df4e352c91

Co-authored-by: Luca Saccarola &lt;github.e41mv@aleeas.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(runtime): source c ftplugins in correct order (#27377)</title>
<updated>2024-02-07T23:42:16+00:00</updated>
<author>
<name>Maximilian Fricke</name>
<email>mfricke2808@gmail.com</email>
</author>
<published>2024-02-07T23:42:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=70a00492962d3201603056d00fbf87c785106d0d'/>
<id>70a00492962d3201603056d00fbf87c785106d0d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:21ce159e0561</title>
<updated>2024-01-29T03:25:35+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2024-01-28T22:33:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7db83d47b2bf88bb8d1c5c95407f66cf7807003c'/>
<id>7db83d47b2bf88bb8d1c5c95407f66cf7807003c</id>
<content type='text'>
runtime(vim): Update syntax and ftplugin files (vim/vim#13924)

Improve matching of line-continuations and interspersed comments.

These are now also matched in multiline syntax command patterns,
dictionary literals, and parenthesised expressions and argument lists.

https://github.com/vim/vim/commit/21ce159e05615fd139c564b734a4bffc9f3fdc4b

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(vim): Update syntax and ftplugin files (vim/vim#13924)

Improve matching of line-continuations and interspersed comments.

These are now also matched in multiline syntax command patterns,
dictionary literals, and parenthesised expressions and argument lists.

https://github.com/vim/vim/commit/21ce159e05615fd139c564b734a4bffc9f3fdc4b

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:71b6d3397649</title>
<updated>2024-01-29T03:25:35+00:00</updated>
<author>
<name>zeertzjq</name>
<email>zeertzjq@outlook.com</email>
</author>
<published>2024-01-28T22:41:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f1e51528d28488932b95ae03c810c823368835b6'/>
<id>f1e51528d28488932b95ae03c810c823368835b6</id>
<content type='text'>
Update runtime files

https://github.com/vim/vim/commit/71b6d3397649fed68ef587aa863fcbdf5fdb057a

Co-authored-by: Bram Moolenaar &lt;Bram@vim.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update runtime files

https://github.com/vim/vim/commit/71b6d3397649fed68ef587aa863fcbdf5fdb057a

Co-authored-by: Bram Moolenaar &lt;Bram@vim.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: enforce "treesitter" spelling #27110</title>
<updated>2024-01-29T01:53:14+00:00</updated>
<author>
<name>Jongwook Choi</name>
<email>wookayin@gmail.com</email>
</author>
<published>2024-01-29T01:53:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=5b1b765610ae12ebd6400aafd068903569ee441a'/>
<id>5b1b765610ae12ebd6400aafd068903569ee441a</id>
<content type='text'>
It's the "tree-sitter" project, but "treesitter" in our code and docs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's the "tree-sitter" project, but "treesitter" in our code and docs.</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:772f8f542513</title>
<updated>2024-01-27T11:02:59+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-01-27T10:36:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e35ae6fbc2ef47a7be1a787031072ba911f7e918'/>
<id>e35ae6fbc2ef47a7be1a787031072ba911f7e918</id>
<content type='text'>
runtime(hurl): add hurl filetype plugin(vim/vim#13921)

https://github.com/vim/vim/commit/772f8f5425132b133a1d0fb22b35c13b4e027b42

Co-authored-by: Melker Ulander &lt;melker.ulander@pm.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(hurl): add hurl filetype plugin(vim/vim#13921)

https://github.com/vim/vim/commit/772f8f5425132b133a1d0fb22b35c13b4e027b42

Co-authored-by: Melker Ulander &lt;melker.ulander@pm.me&gt;
</pre>
</div>
</content>
</entry>
</feed>
