Steven Guh

Results 187 comments of Steven Guh

I don't have experience with Cursor, and not sure how much modification they made. Have you tried the [manual step](https://vspacecode.github.io/docs/#manual-configuration-optional)? I guess it was missing the vscode vim settings?

Just want to double checked. You tried setting `vim.normalModeKeyBindingsNonRecursive` and `vim.visualModeKeyBindingsNonRecursive` like https://github.com/VSpaceCode/VSpaceCode/blob/master/src/configuration/settings.jsonc in your settings.json? The only reason we use the vim key binding setting instead of the built-in...

Have you figured it out? I don't see any issues in the your settings in the screenshot although I've seen issue due to typo.

Yeah vscodecode uses whichkey and preserve both commands, but I can see the confusion. (At this point, it is mostly a historical artifact). Basically if you use vspacecode, you should...

Do you have an example of the vim easy motion? https://github.com/VSpaceCode/VSpaceCode/blob/master/package.json#L1572-L1589 is an example how we map to the vscode easy motion, you should able to do the same with...

I think we can add a default bindings which includes the default commands for LSP so we don't have an add major mode bindings for each language? What do you...

I believe you can use `"silent": true` for VsCodeVim. For example: ``` "vim.normalModeKeyBindingsNonRecursive": [ { "before": [""], "commands": ["vspacecode.space"], "silent": true, } ] ``` We should probably update the documentation...