Skip to content

Commit

Permalink
fix: #30, shortcut mod+alt+s will pull rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
k2s authored and haydenull committed Jul 26, 2023
1 parent e78bb2c commit 5f42bd5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,17 @@ if (isDevelopment) {
},
() => operations.commitAndPush()
);
logseq.App.registerCommandPalette(
{
key: "logseq-plugin-git:rebase",
label: "Pull Rebase",
keybinding: {
binding: "mod+alt+s",
mode: "global",
},
},
() => operations.pullRebase()
);
});
}

Expand Down

0 comments on commit 5f42bd5

Please sign in to comment.