Merge pull request #8734 from 01zulfi/common/fix-paragraph-keybinding

common: fix insert paragraph keybinding
This commit is contained in:
Abdullah Atta
2025-10-08 13:20:32 +05:00
committed by GitHub
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];