Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remapping jump to next section #323

Open
zontafil opened this issue Jul 10, 2023 · 1 comment
Open

Remapping jump to next section #323

zontafil opened this issue Jul 10, 2023 · 1 comment

Comments

@zontafil
Copy link

Hello,
is there a way to remap the shift ] and related commands to something else?

thanks

@alisonatwork
Copy link
Collaborator

alisonatwork commented Mar 1, 2024

Can you add a bit more information about what you would like to do here?

For instance, it is possible to override amVim normal mode behavior to some degree by adding a VS Code keybinding:

    {
        "key": "shift+]",
        "command": "cursorDown",
        "when": "editorTextFocus && amVim.mode == 'NORMAL'"
    },

You can also append && !amVim.waitingForInput if you would like to only override the behavior for a single key when not prefixed as part of a longer vim command.

But if you would like to remap keys inside the plugin itself, this is not currently supported. See #9.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants