Cursor tab no longer works with vim normal mode

Tab functionality only works in insert mode with a vim extension installed with the latest cursor update

1 Like

Hey, did it work before?

yes

yes

I can verify that the issue is fixed on version 0.46.7
thank you!!

sorry, I hallucinated, it’s still an issue

Hey, had the same issue and fixed it with adding this to my vim.normalModeKeyBindingsNonRecursive in settings.json:

{
            "before": ["Tab"],
            "commands": [
                "editor.action.acceptCursorTabSuggestion"
            ],
        },

yo I appreciate u fr

{
“key”: “tab”,
“when”: “editorFocus && vim.active && !inDebugRepl && vim.mode != ‘Insert’”,
“command”: “editor.action.acceptCursorTabSuggestion”
}

added this to my keybindings.json

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.