aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/rmd.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/indent/rmd.vim')
-rw-r--r--runtime/indent/rmd.vim2
1 files changed, 1 insertions, 1 deletions
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