You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2026-04-24 19:55:13 +02:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { EditorView } from '@codemirror/view';
|
|
import { Prec } from '@codemirror/state';
|
|
import { editorSettingsFacet } from './editorSettingsExtension';
|
|
|
|
const hasMultipleCursors = (view: EditorView) => {
|
|
return view.state.selection.ranges.length > 1;
|
|
};
|
|
|
|
type OnCtrlClick = (view: EditorView, event: MouseEvent)=> boolean;
|
|
|
|
const ctrlClickActionExtension = (onCtrlClick: OnCtrlClick) => {
|
|
return [
|
|
Prec.high([
|
|
EditorView.domEventHandlers({
|
|
mousedown: (event: MouseEvent, view: EditorView) => {
|
|
const editorSettings = view.state.facet(editorSettingsFacet);
|
|
const hasModifier = editorSettings.preferMacShortcuts ? event.metaKey : event.ctrlKey;
|
|
|
|
// The default CodeMirror action for ctrl-click is to add another cursor
|
|
// to the document. If the user already has multiple cursors, assume that
|
|
// the ctrl-click action is intended to add another.
|
|
if (hasModifier && !hasMultipleCursors(view)) {
|
|
const handled = onCtrlClick(view, event);
|
|
if (handled) {
|
|
event.preventDefault();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
}),
|
|
]),
|
|
];
|
|
};
|
|
|
|
export default ctrlClickActionExtension;
|