Skip to content

Commit 6a406b6

Browse files
bouncemeguns
authored andcommitted
remove extra char (#79)
backslashes don't need to be escaped in single quotes, otherwise this will never equal 1 char which s:current_char returns
1 parent 93d2d1e commit 6a406b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indent/clojure.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ if exists("*searchpairpos")
121121
if s:syn_id_name() !~? "string"
122122
return -1
123123
endif
124-
if s:current_char() != '\\'
124+
if s:current_char() != '\'
125125
return -1
126126
endif
127127
call cursor(0, col("$") - 1)

0 commit comments

Comments
 (0)