Jongwook Choi
Jongwook Choi
Another similar error that might happen from `matchdelete()`: ``` Error detected while processing function 252_quench[5]..337: line 8: E803: ID not found: 7 ```
I also failed to come up with a minimal vimrc such that it can be consistently reproducible. I suspect there might be a conflict with other plugins, but no idea...
Hmm I'm also with `set mouse=a`. Both in kitty/iTerm2. Let me investigate why this happens for me.
I'm submitting this as a separate PR other than #231 to ease the review process, but it'd be great if each of the PRs can be rebased/merged without creating a...
@qstanczyk, Thank you for the update on the PR after a long time! I understand DM may not have enough resources available, but as a general request, It'd be greatly...
One additional favor: please rebase(squash) when merging, rather than creating a merge commit.
So nearly all files are affected by yapf. I believe it is very easy to reproduce: just clone a OSS acme repository and run `yapf`: ``` $ yapf -ir acme/...
Thanks for confirming. I hope the entire codebase can be reformatted properly soon, to reduce such overhead, but I understand that there can be some difficulties in regard to potential...
Thank you @ethanluoyc for your opinions! > In fact, I think that the learner should be stateless +100. This is the gist of everything. Learner (or at least one of...
ThreadPools are subject to GIL, which means only one thread can run at a time. (It's concurrent but not parallel), so you won't have any speedup beyond 1x~1.2x. Multi-processing is...