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

Missing command for alt+up and alt+down #7

Closed
nikomikulicic opened this issue Mar 7, 2019 · 1 comment
Closed

Missing command for alt+up and alt+down #7

nikomikulicic opened this issue Mar 7, 2019 · 1 comment

Comments

@nikomikulicic
Copy link

nikomikulicic commented Mar 7, 2019

Hi!

I'm wondering what these two commands should be doing:

            {
                "key": "alt+up",
                "command": "",
                "when": "editorTextFocus && !editorReadonly"
            },
            {
                "key": "alt+down",
                "command": "",
                "when": "editorTextFocus && !editorReadonly"
            },

I've added a temporary fix to ignore these key bindings in keybindings.json since they're eating up the current commands I've had on this key combination. Fix:

    {
        "key": "alt+up",
        "command": "-"
    },
    {
        "key": "alt+down",
        "command": "-"
    }

Nevertheless, it would be nice if they had a function or if they were removed.

@stevemoser
Copy link
Owner

@nikomikulicic Thanks for finding that. I added Xcode's shortcut for Opt+Up and Opt+Down which work like Home and End. I created #8 to prevent this in the future when I get around to it.

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