Clear Workspace keyboard shortcut no longer works from within Editor in R2022a?

Since time immemorial, when setting up a new version of MATLAB one of the first things I do is set the Ctrl-L keyboard shortcut for clc, and the Ctrl-Shift-A shortcut for "clear all". I just started working with R2022a and it seems that I can no longer clear the workspace using my Ctrl-Shift-A shortcut if I am within an Editor window (for instance, advancing through cells in Cell Mode). I'm certain I've been able to do this in every version up to this point. At present, I can only perform the shortcut if the cursor is in the Command Window. This is terribly frustrating.
Has anyone else encountered this behavior?

1 Comment

I have confirmed that my custom shortcut works from the Editor window as recently as R2020b.

Sign in to comment.

Answers (2)

This might be due to the conflicts with other functionalities in the recent version of MATLAB. Use the unassigned keyboard mapping, for eg. 'ctrl+shift+j', to clear the workspace from the editor window in MATLAB 2022a. Alternatievely, the user interace of MATLAB 2022a has an option to clear the workspace under the 'Home' tab with the name 'Clear Workspace'.
To explore more on how to customize the keyboard shortcuts refer the link below.
  • link: https://www.mathworks.com/help/matlab/matlab_env/keyboard-shortcuts.html#:~:text=MATLAB%20displays%20the%20keyboard%20shortcuts,Editor%20is%20the%20Escape%20key.

4 Comments

Ctrl-Shift-A is an unassigned keyboard mapping; it is assigned to something else by default but I removed that mapping in the Keyboard Shortcut section. I can access Clear Workspace through the Ribbon as you suggest but it is very inconvenient: it requires sequential pressing of Alt, H, K, down arrow, Enter. That's not a useful alternative to mouse clicking.
Incidentally I tried using Ctrl-Shift-J instead, and the Keyboard Shortcut dialog would not accept it: it substitutes Ctrl-C for some reason I can't fathom.
I see that this should have been a comment on the previous answer... will someone please move it as such?

Sign in to comment.

We have seen that sometimes the control key combinations quit working:
We don't know why or when or how to fix except by restarting MATLAB. Perhaps you're experiencing the same bug.
The way I do it is to create a shortcut on the Quick Access Toolbar in the upper right that says "Clean up". The code for it looks like this:
% Initializes everything
close all force;
clear all;
clear global;
status = fclose('all');
clc;
% Close down Variable Editor windows.
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
Titles = desktop.getClientTitles;
for k = 1:numel(Titles)
Client = desktop.getClient(Titles(k));
if ~isempty(Client) & ...
strcmp(char(Client.getClass.getName), 'com.mathworks.mde.array.ArrayEditor')
Client.close();
end
end
clear('desktop', 'k', 'Titles', 'Client', 'status');

2 Comments

Thanks, I'll try this. However, it doesn't seem to be the case that it's a random error or that it's affecting any other shortcuts. My custom shortcut works fine when I'm outside the Editor window.
I have restarted MATLAB several times and reproduced the behavior. Oddly, my Ctrl-L shortcut for clc works just fine from the Editor window.

Sign in to comment.

Categories

Products

Release

R2022a

Asked:

on 3 Aug 2022

Commented:

on 25 Aug 2022

Community Treasure Hunt

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

Start Hunting!