Rin
Rin
it's possible, but likely to cause chunk synchronization problems. implementing such asynchronous mechanism would be painful and would leads to tons of bugs. we haven't found a practical way to...
what is _realtime_
I see, but I don't know how this _realtime_ feature would have anything to do with low TPS. will this save some tick loop?
How about supporting sandboxed executions on cloud providers like [Modal](https://modal.com/use-cases/sandboxes)? This way we can put security concerns away and work on the actual code execution feature first, then implement the...
I think what you described is the expected behaviour in VSCodeVim and you can use `gj` and `gk` instead of `j` and `k` to achieve what you expected. You can...
I can't say for certain why it's implemented this way in VSCodeVim as I didn't write it, but anyway you can always remap it.
I tested it with my vscodevim, vim and nvim, and they showed the exact same behaviour as you described. However with append `a` instead of insert `i` I can achieve...
As mentioned in the README, you can try adding the following to your `settings.json` and reload/restart VSCode ``` "extensions.experimental.affinity": { "vscodevim.vim": 1 } ```
This is also true for `-` mark, where trying to delete it with `:delmarks -` will only result in parsing error, since delmarks only expect `-` to appear in between...
I can't reproduce the problem you described. Actually, I need to use `[n]gcc` to comment n lines, `[n]gc` simply does nothing. Maybe you're using a custom keymapping or something...?