From 532ee54a42a294073e8b441f3ce5a050d16963a2 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 1 Aug 2019 23:21:22 +0200 Subject: vim-patch:a6c27c47ddf0 Update runtime files https://github.com/vim/vim/commit/a6c27c47ddf081859659d7de1caec675147e466b --- runtime/indent/rmd.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/indent/rmd.vim') diff --git a/runtime/indent/rmd.vim b/runtime/indent/rmd.vim index 182b07cbaa..83fe4e4fed 100644 --- a/runtime/indent/rmd.vim +++ b/runtime/indent/rmd.vim @@ -39,7 +39,7 @@ endfunction function s:GetYamlIndent() let pline = getline(v:lnum - 1) if pline =~ ':\s*$' - return indent(v:lnum) + &sw + return indent(v:lnum) + shiftwidth() elseif pline =~ '^\s*- ' return indent(v:lnum) + 2 endif -- cgit