I want to disable some key in CK EDITOR.
I am using CKEDITOR 4.0 & I want to disable some shortcuts keys in CKEDITOR.
e.g. help file opens on Alt + 0
In old version Config Available in Source/plugins/keystroks/plugins.js But not availble in new version.
Using config.keystrokes
you can add and remove keystrokes.
From documentation:
// Disable default CTRL + L keystroke which executes link command by default.
config.keystrokes = [
...
[ CKEDITOR.CTRL + 76, null ], // CTRL + L
...
];