mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
24 lines
751 B
TypeScript
24 lines
751 B
TypeScript
import { insertNewlineAndIndent } from '@codemirror/commands';
|
|
import { insertNewlineContinueMarkup } from '@codemirror/lang-markdown';
|
|
import { EditorSelection, SelectionRange } from '@codemirror/state';
|
|
import { EditorView } from '@codemirror/view';
|
|
|
|
const insertLineAfter = (view: EditorView) => {
|
|
const state = view.state;
|
|
view.dispatch(state.changeByRange((sel: SelectionRange) => {
|
|
const line = state.doc.lineAt(sel.anchor);
|
|
return {
|
|
range: EditorSelection.cursor(line.to),
|
|
};
|
|
}));
|
|
|
|
// insertNewlineContinueMarkup does nothing if not in markdown -- we thus
|
|
// need a fallback case
|
|
const addedNewLine = insertNewlineContinueMarkup(view);
|
|
if (!addedNewLine) {
|
|
insertNewlineAndIndent(view);
|
|
}
|
|
};
|
|
|
|
export default insertLineAfter;
|