Skip to content

Commit

Permalink
fix: remove keyboard shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
usoonees committed Nov 6, 2023
1 parent 2a5336f commit 2d21780
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logseq-plugin-paste-more",
"version": "1.5.6",
"version": "1.5.8",
"main": "dist/index.html",
"logseq": {
"id": "_usoon-logseq-paste-more",
Expand Down
15 changes: 4 additions & 11 deletions public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@ const settings: SettingSchemaDesc[] = [
default: true,
description: ''
},
{
key: "KeyboardShortcut_paste",
title: 'Keyboard shortcut to enable/disable this plugin',
type: "string",
default: "mod+ctrl+shift+v",
description: ''
},
{
key: "enablePasteMore",
title: 'Enable paste more',
Expand Down Expand Up @@ -172,10 +165,10 @@ async function main() {
logseq.App.registerCommandPalette({
key: `paste-keyboard-shortcut`,
label: "enable/disable paste more",
keybinding: {
binding: logseq.settings.KeyboardShortcut_paste,
mode: "global",
}
// keybinding: {
// binding: logseq.settings.KeyboardShortcut_paste,
// mode: "global",
// }
}, controlUsage)
}

Expand Down

0 comments on commit 2d21780

Please sign in to comment.