Search code examples
javascriptjqueryckeditorfckeditor

CKEditor: How to disable keyboard shortcuts?


Does anyone know how to disable all keyboard shortcuts in CKEditor 3.4.1?

Thanks


Solution

  • Replace the CKEditor.config.keystrokes with an empty array:

    CKEDITOR.config.keystrokes = [];
    

    See plugins_keystrokes_plugin.js, line 195.