summaryrefslogtreecommitdiffstats
path: root/indent/typescript.vim
diff options
context:
space:
mode:
Diffstat (limited to 'indent/typescript.vim')
-rw-r--r--indent/typescript.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/indent/typescript.vim b/indent/typescript.vim
index 0bc143c3..d372f992 100644
--- a/indent/typescript.vim
+++ b/indent/typescript.vim
@@ -355,7 +355,7 @@ function GetTypescriptIndent()
" If the line is empty and the previous nonblank line was a multi-line
" comment, use that comment's indent. Deduct one char to account for the
" space in ' */'.
- if line =~ '^\s*$' && s:IsInMultilineComment(prevline, 1)
+ if line =~ '^\s*$' && yats#IsInMultilineComment(prevline, 1)
return indent(prevline) - 1
endif