summaryrefslogtreecommitdiffstats
path: root/syntax/clojure.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2013-09-22 23:24:04 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2013-09-22 23:24:04 +0200
commitc069f0661a17b797d9fad621ea0363bce20cbd93 (patch)
treea69c4ca8c68a9157e700cbcd708d3bfc31240dbd /syntax/clojure.vim
parent235a5631f96ca7613d0fe48fe3731a8ce76e436d (diff)
downloadvim-polyglot-c069f0661a17b797d9fad621ea0363bce20cbd93.tar.gz
vim-polyglot-c069f0661a17b797d9fad621ea0363bce20cbd93.zip
Update clojure, tex and coffee
Diffstat (limited to 'syntax/clojure.vim')
-rw-r--r--syntax/clojure.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/clojure.vim b/syntax/clojure.vim
index 64e4ac0b..873f3e5f 100644
--- a/syntax/clojure.vim
+++ b/syntax/clojure.vim
@@ -75,7 +75,7 @@ syntax match clojureDispatch "\v#[\^'=<_]?"
" Clojure permits no more than 20 params.
syntax match clojureAnonArg "%\(20\|1\d\|[1-9]\|&\)\?"
-syntax match clojureRegexpEscape "\v\\%([\\tnrfae()\[\]{}^$*?+]|c\u|0[0-3]?\o{1,2}|x%(\x{2}|\{\x{1,6}\})|u\x{4})" contained display
+syntax match clojureRegexpEscape "\v\\%([\\tnrfae.()\[\]{}^$*?+]|c\u|0[0-3]?\o{1,2}|x%(\x{2}|\{\x{1,6}\})|u\x{4})" contained display
syntax region clojureRegexpQuoted start=/\\Q/ms=e+1 skip=/\\\\\|\\"/ end=/\\E/me=s-1 end=/"/me=s-1 contained
syntax region clojureRegexpQuote start=/\\Q/ skip=/\\\\\|\\"/ end=/\\E/ end=/"/me=s-1 contains=clojureRegexpQuoted keepend contained