Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
567 views
in Plugins by
edited by

For the premium plugin SCEditor, I have implemented the shortcut CTRL+ENTER to submit posts. It is like on github and stackoverflow.

It kind of annoys me that this shortcut is missing here in the main q2a forum =)

If we stick to CKEditor, the shortcut can be added in the config.js with:

        config.keystrokes =    [
            [ CKEDITOR.CTRL + 13, 'save' ],
        ]

// not tested though

Regards,
Kai

 

PS: I have implemented this in the SCEditor plugin, see post here.

Q2A version: 1.6.3

Please log in or register to answer this question.

...