Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const BulletListItemBlockContent = createStronglyTypedTiptapNode({
addKeyboardShortcuts() {
return {
Enter: () => handleEnter(this.editor),
"Mod-Shift-7": () =>
"Mod-Shift-8": () =>
this.editor.commands.BNUpdateBlock(this.editor.state.selection.anchor, {
type: "bulletListItem",
props: {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const NumberedListItemBlockContent = createStronglyTypedTiptapNode({
addKeyboardShortcuts() {
return {
Enter: () => handleEnter(this.editor),
"Mod-Shift-8": () =>
"Mod-Shift-7": () =>
this.editor.commands.BNUpdateBlock(this.editor.state.selection.anchor, {
type: "numberedListItem",
props: {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ const extraFields: Record<
group: "Basic blocks",
icon: <RiListOrdered size={18} />,
hint: "Used to display a numbered list",
shortcut: formatKeyboardShortcut("Mod-Alt-7"),
shortcut: formatKeyboardShortcut("Mod-Shift-7"),
},
"Bullet List": {
group: "Basic blocks",
icon: <RiListUnordered size={18} />,
hint: "Used to display an unordered list",
shortcut: formatKeyboardShortcut("Mod-Alt-9"),
shortcut: formatKeyboardShortcut("Mod-Shift-8"),
},
Paragraph: {
group: "Basic blocks",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.