We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a5b15d commit 924c851Copy full SHA for 924c851
packages/core/src/utils/LineNumberExpression.ts
@@ -46,7 +46,7 @@ export interface LineNumberContext {
46
*/
47
contentStart: number;
48
/**
49
- * The end of the content, so the last line of the content.
+ * The end of the file, so the last line of the content.
50
51
contentEnd: number;
52
packages/obsidian/src/ObsidianContextMenu.ts
@@ -29,5 +29,7 @@ export class ObsidianContextMenu implements IContextMenu {
29
30
public showWithEvent(event: MouseEvent): void {
31
this.menu.showAtMouseEvent(event);
32
+ event.stopImmediatePropagation();
33
+ event.preventDefault();
34
}
35
0 commit comments