This is an old revision of the document!


IDE Shortcut Keys

You may define a function key or combination of modifier key and a shortcut key to perform certain action. The shortcut keys are defined in Config property page. MScript Editor also provides a set of MScript Editor Shortcut Keys.

The shortcut key definition must follow the following format:

  keySequence:actionCode

You may define more than one shortcut keys by string them together using semi-colon “;” as the separator.

Example:

  F2:exec;ctrl+T:modelScript

The example above defines two shortcut keys: F2 to execute the model and Ctrl T to bring up model MScript.

Important: Some browsers have reserved certain shortcut keys that can not be overridden. Please see the following links for more details about what keys are reserved/used by the browser:

Try this example shortcut key definition by copy and paste it to ShortCut Keys field in Config property:

  ctrl+s:save;ctrl+l:close;ctrl+e:reset;ctrl+e:exec;ctrl+d:debug;F8:stepIn;F9:stepOver;ctrl+o:stop