user3648565
user3648565

Reputation: 79

Keyboard Conflicts in MATLAB

I'm using MATLAB R2015a. In Home --> Environment --> Preferences --> Keyboard --> Shortcuts, there is a conflict in that both Save and Save Workspace appear to be mapped to Ctrl + S. What is supposed to happen in the case of a conflict? It appears that - in this instance - it chooses the top option. I've found that only the variable I had open at the time of Ctrl + S has been saved, and thus I've lost the rest of them.

Upvotes: 1

Views: 41

Answers (1)

Skogsv
Skogsv

Reputation: 490

Yes, this is correct.

What command is run depends on where the window focus is.

  • Editor: Save open .m file.
  • Command Window: Save all variables from workspace.
  • Variable viewer: Save current open variable.

Upvotes: 1

Related Questions