mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
19 lines
554 B
JavaScript
19 lines
554 B
JavaScript
|
// Key commands will run any time a particular key or key combination is pressed
|
||
|
// https://github.com/bustlelabs/mobiledoc-kit#configuring-hot-keys
|
||
|
|
||
|
export default function (editor) {
|
||
|
|
||
|
let softReturnKeyCommand = {
|
||
|
str: 'SHIFT+ENTER',
|
||
|
|
||
|
run(editor) {
|
||
|
editor.run((postEditor) => {
|
||
|
let softReturn = postEditor.builder.createAtom('soft-return');
|
||
|
postEditor.insertMarkers(editor.range.head, [softReturn]);
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
editor.registerKeyCommand(softReturnKeyCommand);
|
||
|
|
||
|
}
|