<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/runtime/indent, 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:b4eb3f1e4489</title>
<updated>2024-02-29T21:54:57+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-02-29T17:28:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c8299d15db16fb8305c95a2cb5af53668a007ef2'/>
<id>c8299d15db16fb8305c95a2cb5af53668a007ef2</id>
<content type='text'>
runtime(yaml): disable multiline_scalar detection by default

There have been many complaints about Yaml indenting too much, because
it considers values to be multi-line by default, which leads to
unintended indenting for (apparently most) users.

So let's hide this feature behind the new feature flag, keep it
simple and prefer single line value key pairs by default.

If you want the old behaviour, set the following value: &gt;

  :let g:yaml_indent_multiline_scalar = 1

If not set, it will indent the same as the previous line.

closes vim/vim#13845

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

Co-authored-by: Christian Brabandt &lt;cb@256bit.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(yaml): disable multiline_scalar detection by default

There have been many complaints about Yaml indenting too much, because
it considers values to be multi-line by default, which leads to
unintended indenting for (apparently most) users.

So let's hide this feature behind the new feature flag, keep it
simple and prefer single line value key pairs by default.

If you want the old behaviour, set the following value: &gt;

  :let g:yaml_indent_multiline_scalar = 1

If not set, it will indent the same as the previous line.

closes vim/vim#13845

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

Co-authored-by: Christian Brabandt &lt;cb@256bit.org&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>vim-patch:83f627ff42a3</title>
<updated>2024-02-01T09:04:32+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-02-01T08:32:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e0961aaa5aa6e2dc39be688ccf8072e7bc616780'/>
<id>e0961aaa5aa6e2dc39be688ccf8072e7bc616780</id>
<content type='text'>
runtime(racket): add missing space to b:undo_indent var (vim/vim#13945)

This copies commit 2a4862a (fixup! indent: only reset some options when
has vim9, 2024-01-31) from https://github.com/benknoble/vim-racket and
fixes 26b0176a9 (runtime(racket): undo some indent options only when
vim9script is available (vim/vim#13935), 2024-01-30).

https://github.com/vim/vim/commit/83f627ff42a3da94db1299493b2cd1133c179850

Co-authored-by: D. Ben Knoble &lt;ben.knoble+github@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(racket): add missing space to b:undo_indent var (vim/vim#13945)

This copies commit 2a4862a (fixup! indent: only reset some options when
has vim9, 2024-01-31) from https://github.com/benknoble/vim-racket and
fixes 26b0176a9 (runtime(racket): undo some indent options only when
vim9script is available (vim/vim#13935), 2024-01-30).

https://github.com/vim/vim/commit/83f627ff42a3da94db1299493b2cd1133c179850

Co-authored-by: D. Ben Knoble &lt;ben.knoble+github@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:26b0176a98f8</title>
<updated>2024-01-31T08:55:08+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-01-31T08:38:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6e8e3a2a3a5ed051e74a29a6fdaf56f6d4c42f4f'/>
<id>6e8e3a2a3a5ed051e74a29a6fdaf56f6d4c42f4f</id>
<content type='text'>
runtime(racket): undo some indent options only when vim9script is available (vim/vim#13935)

This copies commit 64edf95 (indent: only reset some options when has
vim9, 2024-01-30) from https://github.com/benknoble/vim-racket.

https://github.com/vim/vim/commit/26b0176a98f88acef840d7285e967859eb746c1c

Co-authored-by: D. Ben Knoble &lt;ben.knoble+github@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(racket): undo some indent options only when vim9script is available (vim/vim#13935)

This copies commit 64edf95 (indent: only reset some options when has
vim9, 2024-01-30) from https://github.com/benknoble/vim-racket.

https://github.com/vim/vim/commit/26b0176a98f88acef840d7285e967859eb746c1c

Co-authored-by: D. Ben Knoble &lt;ben.knoble+github@gmail.com&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:50dbe16cd818</title>
<updated>2024-01-24T10:05:25+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2024-01-24T08:59:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f4acacdb538681a43ff935a05a3462d0a735f955'/>
<id>f4acacdb538681a43ff935a05a3462d0a735f955</id>
<content type='text'>
runtime(qml): Use shiftwidth() in indent plugin (vim/vim#13908)

Fixes vim/vim#13907

https://github.com/vim/vim/commit/50dbe16cd8180eb03e8589694b574d610e6d562c

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(qml): Use shiftwidth() in indent plugin (vim/vim#13908)

Fixes vim/vim#13907

https://github.com/vim/vim/commit/50dbe16cd8180eb03e8589694b574d610e6d562c

Co-authored-by: dkearns &lt;dougkearns@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:9b03d3e75b42 (#27059)</title>
<updated>2024-01-17T14:47:40+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2024-01-17T14:47:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f5d59340a6e8a71fb766fbfbf796377d7d9e4c20'/>
<id>f5d59340a6e8a71fb766fbfbf796377d7d9e4c20</id>
<content type='text'>
Translate the Vim9 script Godot files to legacy.

`&lt;scriptcmd&gt;` is not ported yet, so replace it with `&lt;Cmd&gt;` and `&lt;SID&gt;`.
If it's ported, `&lt;scriptcmd&gt;call s:` can be used instead.

Includes changes from:

vim-patch:0daafaa7d99e (was partial, but is now pretty much fully ported)
vim-patch:9712ff1288f9

Co-authored-by: Maxim Kim &lt;habamax@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Translate the Vim9 script Godot files to legacy.

`&lt;scriptcmd&gt;` is not ported yet, so replace it with `&lt;Cmd&gt;` and `&lt;SID&gt;`.
If it's ported, `&lt;scriptcmd&gt;call s:` can be used instead.

Includes changes from:

vim-patch:0daafaa7d99e (was partial, but is now pretty much fully ported)
vim-patch:9712ff1288f9

Co-authored-by: Maxim Kim &lt;habamax@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:211211052d04 (#27048)</title>
<updated>2024-01-16T23:08:41+00:00</updated>
<author>
<name>Sean Dewar</name>
<email>seandewar@users.noreply.github.com</email>
</author>
<published>2024-01-16T23:08:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc'/>
<id>aa5819f5a5e634904ea1ca4d25700c0cbbba5ccc</id>
<content type='text'>
runtime(odin): include ftplugin, syntax and indent script (vim/vim#13867)

https://github.com/vim/vim/commit/211211052d0426394cbd5f42f3f3f78a64822e2a

Translate the files from Vim9 script to legacy Vim script. Notably:

- Prefer case-matching comparisons where needed.
- Save and restore `&amp;cpo`.
- Make the functions script-local. (Pretty easy to use these in expr options now
  since Vim 9.0 anyways)

Add a note after the header for each file stating that they're manually
translated.

Co-authored-by: Maxim Kim &lt;habamax@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(odin): include ftplugin, syntax and indent script (vim/vim#13867)

https://github.com/vim/vim/commit/211211052d0426394cbd5f42f3f3f78a64822e2a

Translate the files from Vim9 script to legacy Vim script. Notably:

- Prefer case-matching comparisons where needed.
- Save and restore `&amp;cpo`.
- Make the functions script-local. (Pretty easy to use these in expr options now
  since Vim 9.0 anyways)

Add a note after the header for each file stating that they're manually
translated.

Co-authored-by: Maxim Kim &lt;habamax@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:715a8058895f</title>
<updated>2023-12-28T23:54:09+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-12-28T23:30:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=1ef60ea6513be72a03958ed6239bfe474c85a7a3'/>
<id>1ef60ea6513be72a03958ed6239bfe474c85a7a3</id>
<content type='text'>
runtime(cucumber): Updates to indent and syntax

https://github.com/vim/vim/commit/715a8058895f5908f44ee243fdafa431b6483e47

Co-authored-by: Tim Pope &lt;code@tpope.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(cucumber): Updates to indent and syntax

https://github.com/vim/vim/commit/715a8058895f5908f44ee243fdafa431b6483e47

Co-authored-by: Tim Pope &lt;code@tpope.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vim-patch:a907c9199216</title>
<updated>2023-12-28T23:54:09+00:00</updated>
<author>
<name>Christian Clason</name>
<email>c.clason@uni-graz.at</email>
</author>
<published>2023-12-28T23:29:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7709597a1d79e053587cb01f2a7d7c0f3e72d9ab'/>
<id>7709597a1d79e053587cb01f2a7d7c0f3e72d9ab</id>
<content type='text'>
runtime(sass): Provide sass_recommended_style option

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

Co-authored-by: Tim Pope &lt;code@tpope.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
runtime(sass): Provide sass_recommended_style option

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

Co-authored-by: Tim Pope &lt;code@tpope.net&gt;
</pre>
</div>
</content>
</entry>
</feed>
