common: fix insert paragraph keybinding

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
This commit is contained in:
01zulfi
2025-10-08 11:57:42 +05:00
parent f76e0b7931
commit 534b8c5ad0
2 changed files with 4 additions and 3 deletions

View File

@@ -222,7 +222,7 @@ export const tiptapKeys = {
type: "tiptap"
},
insertParagraph: {
keys: "Mod-Shift-0",
keys: "Mod-Alt-0",
description: "Insert paragraph",
category: "Editor",
type: "tiptap"

View File

@@ -28,6 +28,7 @@ import {
import { useMemo } from "react";
import { CodeBlock } from "../../extensions/code-block/index.js";
import { strings } from "@notesnook/intl";
import { keybindings } from "@notesnook/common";
const defaultLevels = [1, 2, 3, 4, 5, 6] as const;
@@ -70,7 +71,7 @@ function toMenuItems(
key: `heading-${level}`,
title: toolbarLocation === "bottom" ? `H${level}` : strings.heading(level),
isChecked: level === currentHeadingLevel,
modifier: `Mod-Alt-${level}`,
modifier: keybindings[`insertHeading${level}`].keys,
onClick: () =>
editor
?.chain()
@@ -84,7 +85,7 @@ function toMenuItems(
type: "button",
title: strings.paragraph(),
isChecked: !currentHeadingLevel,
modifier: `Mod-Alt-0`,
modifier: keybindings.insertParagraph.keys,
onClick: () => editor.chain().focus().setParagraph().run()
};
return [paragraph, ...menuItems];