mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
dec1250bbf
refs https://github.com/TryGhost/Ghost/issues/9311 - pressing <kbd>Shift+Enter</kbd> will create a `soft-return` atom that adds a `<br>` element to the doc - emulates many rich-text editors that have a similar functionality where it's desirable to add line breaks rather than starting new paragraphs
17 lines
552 B
JavaScript
17 lines
552 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);
|
|
}
|