summaryrefslogtreecommitdiffstats
path: root/indent
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2021-06-27 10:07:29 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2021-06-27 10:07:29 +0200
commit4f5388350be1052f610b830c8fce8fbc17370ec6 (patch)
tree425cb8ee70c123233055a61d56d73e2eb97536db /indent
parent4899585281beab51e5dff1d9ae4d3159244a8275 (diff)
downloadvim-polyglot-4f5388350be1052f610b830c8fce8fbc17370ec6.tar.gz
vim-polyglot-4f5388350be1052f610b830c8fce8fbc17370ec6.zip
Update
Diffstat (limited to 'indent')
-rw-r--r--indent/clojure.vim2
-rw-r--r--indent/zig.vim4
2 files changed, 3 insertions, 3 deletions
diff --git a/indent/clojure.vim b/indent/clojure.vim
index ac4544bb..7f79c9a2 100644
--- a/indent/clojure.vim
+++ b/indent/clojure.vim
@@ -4,7 +4,7 @@ endif
" Vim indent file
" Language: Clojure
-" Maintainer: Alex Vear <av@axvr.io>
+" Maintainer: Alex Vear <alex@vear.uk>
" Former Maintainers: Sung Pae <self@sungpae.com>
" Meikel Brandmeyer <mb@kotka.de>
" URL: https://github.com/clojure-vim/clojure.vim
diff --git a/indent/zig.vim b/indent/zig.vim
index f4e2cda7..fc9f5d6d 100644
--- a/indent/zig.vim
+++ b/indent/zig.vim
@@ -49,10 +49,10 @@ function! GetZigIndent(lnum)
let prevLineNum = prevnonblank(a:lnum-1)
let prevLine = getline(prevLineNum)
- " for lines that look line
+ " for lines that look like
" },
" };
- " try treat them the same as a }
+ " try treating them the same as a }
if prevLine =~ '\v^\s*},$'
if currentLine =~ '\v^\s*};$' || currentLine =~ '\v^\s*}$'
return indent(prevLineNum) - 4