Skip to content

Commit 2b8c2dc

Browse files
committed
Change quote style, remove comment
1 parent 7cdb767 commit 2b8c2dc

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

doc/clojure.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Indent words that match patterns as if they are included in 'lispwords'
5353
>
5454
" Default
5555
let g:clojure_fuzzy_indent = 1
56-
let g:clojure_fuzzy_indent_patterns = "with.*,def.*,let.*"
56+
let g:clojure_fuzzy_indent_patterns = 'with.*,def.*,let.*'
5757
<
5858

5959
*g:clojure_align_multiline_strings*

indent/clojure.vim

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if exists("*searchpairpos")
4343
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
4444
endif
4545

46-
if !exists("g:clojure_align_multiline_strings")
46+
if !exists('g:clojure_align_multiline_strings')
4747
let g:clojure_align_multiline_strings = 0
4848
endif
4949

@@ -270,8 +270,6 @@ if exists("*searchpairpos")
270270
return paren[1] + &shiftwidth - 1
271271
endif
272272

273-
" XXX: Slight glitch here with special cases. However it's only
274-
" a heureustic. Offline we can't do more.
275273
if g:clojure_fuzzy_indent
276274
\ && ww != 'with-meta'
277275
for pat in split(g:clojure_fuzzy_indent_patterns, ",")

0 commit comments

Comments
 (0)