updateAppSettings

updateAppSettings(settings: String);

The updateAppSettings method of the JadeTextEdit class adds one or more entries specified in the settings parameter to the application text editor settings table.

Use the application settings table to add to or override the default global settings.

Use the applySettings method to apply the combined application a global settings to the receiver control, as shown in the example in the following code fragment.

jte.updateAppSettings("smart.indent.words.*.jade=if while foreach");
jteSource.applySettings();

See also the Application class getJadeTextEditGlobalSettings, getJadeTextEditOneSetting, and updateJadeTextEditAppSettings methods and the JadeTextEdit class applySettings method.