1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Desktop: Fixes #1342: Add override for ACE editor shortcut Ctrl+K (#1705)

This commit is contained in:
Helmut K. C. Tessarek 2019-07-13 09:52:33 -04:00 committed by Laurent Cozic
parent f6b0da3f5e
commit dbedefc021

View File

@ -853,7 +853,7 @@ class NoteTextComponent extends React.Component {
this.editor_.editor.renderer.on('afterRender', this.onAfterEditorRender_);
const cancelledKeys = [];
const letters = ['F', 'T', 'P', 'Q', 'L', ',', 'G'];
const letters = ['F', 'T', 'P', 'Q', 'L', ',', 'G', 'K'];
for (let i = 0; i < letters.length; i++) {
const l = letters[i];
cancelledKeys.push('Ctrl+' + l);