Skip to content

Commit c91fb58

Browse files
committed
Fix typo
1 parent 589f4c5 commit c91fb58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: plugin/async_clj_highlight.vim

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ function! AsyncCljRequestHighlight(...)
5555

5656
let ns = AcidGetNs()
5757
let opts = g:clojure_highlight_local_vars ? '' : ' :local-vars false'
58-
call s:silen_acid_send({"op": "eval", "code": "(async-clj-highlight/ns-syntax-command '" . ns . opts . ")"}, 'AsyncCljHighlightExec')
58+
call s:silent_acid_send({"op": "eval", "code": "(async-clj-highlight/ns-syntax-command '" . ns . opts . ")"}, 'AsyncCljHighlightExec')
5959
endfunction
6060

6161
function! AsyncCljHighlightPrepare(msg)
6262
let exists = a:msg[0].value
6363
if exists =~ 'nil'
6464
let buf = join(readfile(globpath(&runtimepath, 'clj/async_clj_highlight.clj')), "\n")
65-
call s:silen_acid_send({'op': 'eval', 'code': "(do ". buf . ")"}, 'AsyncCljRequestHighlight')
65+
call s:silent_acid_send({'op': 'eval', 'code': "(do ". buf . ")"}, 'AsyncCljRequestHighlight')
6666
endif
6767
call AsyncCljRequestHighlight()
6868
endfunction
6969

7070
function! s:syntax_match_references(bang)
7171
if g:clojure_highlight_references && (a:bang || !exists('b:b:async_clj_updated_highlight'))
72-
call s:silen_acid_send({'op': 'eval', 'code': "(find-ns 'async-clj-highlight)"}, 'AsyncCljHighlightPrepare')
72+
call s:silent_acid_send({'op': 'eval', 'code': "(find-ns 'async-clj-highlight)"}, 'AsyncCljHighlightPrepare')
7373
endif
7474
endfunction
7575

0 commit comments

Comments
 (0)