-
-
Notifications
You must be signed in to change notification settings - Fork 69
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
alt+<digit> no longer switches between the currently open editor tabs #1208
Comments
As a quick solution, what if you add the keybindings below to your [
{
"key": "alt+0",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+1",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+2",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+3",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+4",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+5",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+6",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+7",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+8",
"command": "-emacs-mcx.digitArgument"
},
{
"key": "alt+9",
"command": "-emacs-mcx.digitArgument"
}, Please let me ask some other questions:
|
Curiously it does work when foucs was on keyboard shortcuts. I can jump to two or three. Perhaps something with the While I'm here I want to say thank you so much for this amazing extension! |
Is this a won't fix issue because of the new support for prefix commands? I had tried the suggested configuration @whitphx, but it didn't seem to work for me. Should these be I will try it again, but would love to have an option in the preferences to just enable Thank you so much for this plugin. It is by far the best emacs-plugin and has made VSCode my daily driver to the point I feel guilty retaining an emacs stamp on my neckbeard membership card. =) |
I had to add the following keybindings for this to work as it did it 0.38.0, basically as above but also disable
I'm not sure if why it was working for you by default @whitphx but probably due to the Cheers. |
Ah, sorry I didn't care about {
"key": "cmd+1",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+2",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+3",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+4",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+5",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+6",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+7",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+8",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
},
{
"key": "cmd+9",
"command": "-emacs-mcx.digitArgument",
"when": "config.emacs-mcx.useMetaPrefixMacCmd && editorTextFocus && !emacs-mcx.acceptingArgument"
} So I plan to add an option to disable the |
@whitphx, You are the man! Ty!!! |
You can avoid this problem by setting |
FYI You have to type |
I got an update with this change this morning and now using alt+ doesn't change tabs to the tab anymore. This is a significant issue for me as I always work with multiple tabs open and navigate between them with this functionality constantly.
The text was updated successfully, but these errors were encountered: