-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Make "extraKeys" consistent for notebook and editor #2745
Conversation
I have no objections to changing the keymap, though that would be inconsistent with the notebook that default to "default" command amp. Would it be better to be consistent and change notebook as well ? I also would try to get a wider input on if we should change as it may break user habits. |
It seems like sublime is the default for the notebook (e.g. if I CMD + / it will comment out a block). |
Well no, the default is "default", the Ctrl-/ shortcut is set here |
Ahhh! Ok, we don't need to make sublime the default, I just need to make the notebook and editor |
notebook/static/edit/js/editor.js
Outdated
"Tab": "indentMore", | ||
"Shift-Tab" : "indentLess", | ||
// "Cmd-Alt-[" : "indentAuto", | ||
// "Ctrl-Alt-[" : "indentAuto", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these be in or out? If we don't want them, let's remove them completely rather than commenting them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll remove...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like you've removed them from cell.js, but not here ;-)
a4fe1af
to
f222978
Compare
Reopening to rerun tests with master |
Closes #2740