When the Help plugin is loaded, the {productname} editor displays the keyboard shortcut for accessing the Help dialog in the {productname} status bar by default.
The help_accessibility option allows for this display to be turned off.
Type: Boolean
Default value: true
Possible values: true, false
tinymce.init({
selector: "textarea", // change this value according to your HTML
plugins: "help",
help_accessibility: false,
});The help_accessibility option is set to true by default when the Help plugin is loaded.
It is not necessary, but may be useful, to explicitly set the option to true.
tinymce.init({
selector: "textarea", // change this value according to your HTML
plugins: "help",
help_accessibility: true,
});