Bug introduced in 10.2
- System: Linux
Once updated to 10.2, my Alt+} and Alt+) do not return a pair of brackets but a single right one, as if Alt is not pressed. Alt+] still works.
Bug introduced in 10.2
Once updated to 10.2, my Alt+} and Alt+) do not return a pair of brackets but a single right one, as if Alt is not pressed. Alt+] still works.
If you add this to your KeyEventTranslations.tr file it works on Linux (I only tested english keyboard layout):
Item[KeyEvent["}", Modifiers -> {Command, Shift}],
FrontEndExecute[{
FrontEnd`NotebookWrite[FrontEnd`InputNotebook[], "{", After],
FrontEnd`NotebookWrite[FrontEnd`InputNotebook[], "}", Before]
}]
],
Item[KeyEvent[")", Modifiers -> {Command, Shift}],
FrontEndExecute[{
FrontEnd`NotebookWrite[FrontEnd`InputNotebook[], "(", After],
FrontEnd`NotebookWrite[FrontEnd`InputNotebook[], ")", Before]
}]
],
If so desired (and if I find time) I could add this to the Shortcuts` package.
KeyEventTranslations.trare not the issue. Additionally, I added the standard header for bugs. – halirutan Jul 26 '15 at 12:49ctrl+shift+7do not produce nice superscript anymore, but some very weird symbol. Do you also have that problem as well? – Neven Caplar Jul 27 '15 at 14:43ctrl + 6for nice superscript works. – Chromatic Jul 28 '15 at 19:21ctrl+shift+7should produce fractions. However, this is somehow broken in the 10.2. As a workaround I remapped fractions toctrl+alt+7by addingItem[KeyEvent["7", Modifiers -> {Control,Command}], "Fraction"]toKeyEventTranslations.tr– vsht Aug 15 '15 at 16:38