minor vimscript fixes

This commit is contained in:
Green Sky 2022-12-17 18:39:21 +01:00
parent 3c7111f6c9
commit a3d9211e5e
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -149,7 +149,7 @@ function! GreenCRDTCheckTimeAndFetch()
if b:green_crdt_timer_can_fetch
let b:green_crdt_timer_can_fetch = v:false
" dont update when inserting or visual
" dont update when inserting or visual (or atleast not in visual)
if mode() is# 'n'
let l:response = ch_evalexpr(b:channel, [{'cmd': 'fetch_changes'}])
for [line_number, line] in l:response
@ -182,13 +182,14 @@ function! GreenCRDTStop()
au!
augroup END
call timer_stop(green_crdt_fetch_timer)
call timer_stop(b:green_crdt_fetch_timer)
call ch_close(b:channel)
delfunction GreenCRDTCheckTimeAndSend
delfunction GreenCRDTCheckTimeAndFetch
delfunction GreenCRDTSendTimerCallback
delfunction GreenCRDTFetchTimerCallback
delfunction GreenCRDTChangeEvent
"delfunction GreenCRDTStop
let b:green_crdt_timer_can_send = v:true