aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:00:46 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:00:46 +1300
commit7c1e36a71f6d40814f6f9b5599934230229be965 (patch)
tree303e451cb2a95988a85119456b5326613565ebf4
parentDon't run for empty filetypes (diff)
downloadvim-detect-indent-develop.tar.gz
vim-detect-indent-develop.zip
Improve a commentdevelop
-rw-r--r--autoload/detect_indent.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/detect_indent.vim b/autoload/detect_indent.vim
index ab3f485..6354843 100644
--- a/autoload/detect_indent.vim
+++ b/autoload/detect_indent.vim
@@ -35,7 +35,7 @@ function! detect_indent#() abort
for line in getline(1, total)
" If there are leading tabs, we'll call this a tab-indented line; bump the
- " appropriate count, and skip the rest of the loop.
+ " appropriate count, and skip the rest of this iteration of the loop.
"
if matchstr(line, '^\t*') !=# ''
let tabs += 1