Easy Keymap

CKEditor plugin for custom keymap

Installation

config.extraPlugins = 'easykeymap';
config.easykeymaps = {
        4456530 : String.fromCharCode(174),   //ALT + R
        4456515 : String.fromCharCode(169)   //ALT + C
    };

OR

config.easykeymaps[CKEDITOR.ALT + 81] = String.fromCharCode(190);    //ALT + Q

OR

CKEDITOR.config.easykeymaps = {
        4456530 : String.fromCharCode(174),   //ALT + R
        4456515 : String.fromCharCode(169)   //ALT + C
   };
    config.easykeymaps[CKEDITOR.CTRL + 83] = function(editor, code){
        alert("You have entered 'CTRL + S' (keyCode: " + code + ") In editor: " + editor.name);
    };

CKEditor Easy Key Map Demo

Easy Keymap demo!
I'm an instance of CKEditor.

Try to press
ALT + R or
ALT + C or
CTRL + S