Linwei
Linwei
oh, sorry, missed something. Is it possible to prevent calling functions when popup menu is visible ?
Thanks, I temporarily set ```VimL let g:ale_lint_on_text_changed = 'normal' ``` And it makes me feel better, but a lot of users don't know this .
It appears that calling function in timers is not a problem, I have written a test to verify it. ```VimL let s:index = 0 function! MyTimer(tid) echo "index: " ....
`g:ale_echo_cursor = 1` does not help, it still happens. EDIT: do you mean to 0 ? the default value is 1, both 0 and 1 can't stop flickering.
一般 ikcp_input 或者 ikcp_send 之后调用下 flush 即可,可以保证数据即时收发,平时的定时 update 调用主要是判断重传是否即时,这个晚 1ms 根本不影响啥,tcp 的重传检测是按 TCP_RTO_MIN 触发的(200ms),还有个延迟 ack,100ms 起步,影响更大。
不要把 ui 文件压缩啊,要压缩也转换成 py 文件。
So what's wrong with this plugin? What command do you use?
不要超过 min(kcp->rcv_wnd, kcp->snd_wnd) * kcp->mss 超过自己分多次发送
不是这样的,通配符使用的路径通配符,不是正则,python glob 的通配符 ```c //! src: ../test/abc*.c //! src: ../test/def*.c ```