Add SetUp call in IsLineCommented function definition

This commit is contained in:
ftfunjth
2021-12-28 18:13:13 +08:00
parent eddd535bdf
commit 2e7a775dd2

View File

@@ -1153,6 +1153,7 @@ endfunction
" -lineNo: the line number of the line to check
" Return: Number, 1 if the line is a comment, 0 else
function! nerdcommenter#IsLineCommented(lineNo) abort
call nerdcommenter#SetUp()
let theLine = getline(a:lineNo)
return s:IsInSexyComment(a:lineNo) || s:IsCommentedFromStartOfLine(s:Left(), theLine) || s:IsCommentedFromStartOfLine(s:Left({'alt': 1}), theLine)
endfunction