CTRL + ALT not providing }

54 views (last 30 days)
Alexander Szambor
Alexander Szambor on 13 Dec 2024 at 17:58
Commented: Alexander Szambor on 20 Dec 2024 at 23:51
I am using CTRL + ALT to write } , however in 2024b this does not work anymore.
I am forced to use ALT GR.
I found no way to change that in the options. In other programs it works perfectly fine.
Is there a way for me to return this function as it was?
  5 Comments
Alexander Szambor
Alexander Szambor on 19 Dec 2024 at 12:22
Thank you for the solution! It worked :)
Alexander Szambor
Alexander Szambor on 19 Dec 2024 at 12:24
I could not mark that as a solution, i repeated your solution in the comment below.

Sign in to comment.

Answers (2)

Swastik Sarkar
Swastik Sarkar on 20 Dec 2024 at 4:23
Ctrl + Alt + 0 resets the zoom to 100%. However, executing the following code disables this shortcut:
s = settings;
s.matlab.editor.displaysettings.DisableResetZoomKeyboardShortcut.TemporaryValue = 1;
For more information, refer the following documentation:

Alexander Szambor
Alexander Szambor on 19 Dec 2024 at 12:22
Swastik Sarkar vor etwa 2 Stunden
Despite disabling the reset zoom keyboard shortcut, Ctrl + Alt + 0 still resets the zoom to 100% on R2024b. However, in R2024a, executing the following code disables this shortcut:
ThemeCopy
ThemeCopy
s = settings;
s.matlab.editor.displaysettings.DisableResetZoomKeyboardShortcut.TemporaryValue = 1;
For more information, refer the following documentation:
  1 Comment
Alexander Szambor
Alexander Szambor 3 minutes ago
But the .TemporatyValue gets reset on restart.
For me the PersonalValue worked upon restarting the Program, i dont know about restarting the PC
s = settings;
s.matlab.editor.displaysettings.DisableResetZoomKeyboardShortcut.PersonalValue=1;

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2024b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!