We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e7064 commit 589f4c5Copy full SHA for 589f4c5
plugin/async_clj_highlight.vim
@@ -19,13 +19,15 @@ endfunction
19
function! s:restore_acid_log()
20
if exists('b:acid_old_log_value')
21
let b:acid_log_messages = b:acid_old_log_value
22
+ unlet b:acid_old_log_value
23
else
24
unlet b:acid_log_messages
25
endif
26
endfunction
27
28
function! s:silent_acid_send(data, handler_fn)
29
call s:disable_acid_log()
30
+ echom "Disabled log: ".b:acid_log_messages
31
call AcidSendNrepl(a:data, 'VimFn', a:handler_fn)
32
call s:restore_acid_log()
33
0 commit comments