mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
vim-patch:b4eb3f1e4489
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: >
:let g:yaml_indent_multiline_scalar = 1
If not set, it will indent the same as the previous line.
closes vim/vim#13845
b4eb3f1e44
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
bfcf5666cc
commit
c8299d15db
@ -1226,5 +1226,11 @@ indent for a continuation line, a line that starts with a backslash: >
|
||||
|
||||
Three times shiftwidth is the default value.
|
||||
|
||||
YAML *ft-yaml-indent*
|
||||
|
||||
By default, the yaml indent script does not try to detect multiline scalars.
|
||||
If you want to enable this, set the following variable: >
|
||||
|
||||
let g:yaml_indent_multiline_scalar = 1
|
||||
|
||||
vim:tw=78:ts=8:noet:ft=help:norl:
|
||||
|
@ -3,6 +3,7 @@
|
||||
" Maintainer: Nikolai Pavlov <zyx.vim@gmail.com>
|
||||
" Last Updates: Lukas Reineke, "lacygoill"
|
||||
" Last Change: 2022 Jun 17
|
||||
" 2024 Feb 29 disable mulitline indent by default (The Vim project)
|
||||
|
||||
" Only load this indent file when no other was loaded.
|
||||
if exists('b:did_indent')
|
||||
@ -138,11 +139,13 @@ function GetYAMLIndent(lnum)
|
||||
else
|
||||
return indent(prevmapline)
|
||||
endif
|
||||
elseif prevline =~# '^\s*- '
|
||||
elseif get(g:, 'yaml_indent_multiline_scalar', 0) &&
|
||||
\ prevline =~# '^\s*- '
|
||||
" - List with
|
||||
" multiline scalar
|
||||
return previndent+2
|
||||
elseif prevline =~# s:mapkeyregex .. '\v\s*%(%(' .. s:c_ns_tag_property ..
|
||||
elseif get(g:, 'yaml_indent_multiline_scalar', 0) &&
|
||||
\ prevline =~# s:mapkeyregex .. '\v\s*%(%(' .. s:c_ns_tag_property ..
|
||||
\ '\v|' .. s:c_ns_anchor_property ..
|
||||
\ '\v|' .. s:block_scalar_header ..
|
||||
\ '\v)%(\s+|\s*%(\#.*)?$))*'
|
||||
|
Loading…
Reference in New Issue
Block a user