aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-15 14:54:29 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-15 14:54:29 +1300
commitbeeaa2c4ca7851e190a893056af2c0fb784476c9 (patch)
treed60ba72ec41aa67cef3cc66c1ee0a00690c2d6f0
parentUse full word "syntax" in sh.vim (diff)
downloaddotfiles-beeaa2c4ca7851e190a893056af2c0fb784476c9.tar.gz
dotfiles-beeaa2c4ca7851e190a893056af2c0fb784476c9.zip
Use single-quotes for strings in sh.vim
-rw-r--r--vim/after/syntax/sh.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/syntax/sh.vim b/vim/after/syntax/sh.vim
index 9a26084f..08dbd857 100644
--- a/vim/after/syntax/sh.vim
+++ b/vim/after/syntax/sh.vim
@@ -111,7 +111,7 @@ if exists('b:is_posix')
syntax clear shRepeat
syntax region shRepeat
\ matchgroup=shLoop
- \ start="\<while\_s" end="\<do\>"me=e-2
+ \ start='\<while\_s' end='\<do\>'me=e-2
\ contains=@shLoopList
" Run some clustering that core syntax/sh.vim thinks doesn't apply to POSIX;