-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👍 add fixup actions to gin-log (fixup, amend, reword)
- Loading branch information
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as batch from "https://deno.land/x/[email protected]/batch/mod.ts"; | ||
import { alias, define, GatherCandidates, Range } from "./core.ts"; | ||
|
||
export type Candidate = { commit: string }; | ||
|
||
export async function init( | ||
denops: Denops, | ||
bufnr: number, | ||
gatherCandidates: GatherCandidates<Candidate>, | ||
): Promise<void> { | ||
await batch.batch(denops, async (denops) => { | ||
await define( | ||
denops, | ||
bufnr, | ||
"fixup:fixup", | ||
(denops, bufnr, range) => | ||
doFixup(denops, bufnr, range, "fixup", gatherCandidates), | ||
); | ||
await define( | ||
denops, | ||
bufnr, | ||
"fixup:amend", | ||
(denops, bufnr, range) => | ||
doFixup(denops, bufnr, range, "amend", gatherCandidates), | ||
); | ||
await define( | ||
denops, | ||
bufnr, | ||
"fixup:reword", | ||
(denops, bufnr, range) => | ||
doFixup(denops, bufnr, range, "reword", gatherCandidates), | ||
); | ||
await alias( | ||
denops, | ||
bufnr, | ||
"fixup", | ||
"fixup:fixup", | ||
); | ||
}); | ||
} | ||
|
||
async function doFixup( | ||
denops: Denops, | ||
bufnr: number, | ||
range: Range, | ||
kind: "fixup" | "amend" | "reword", | ||
gatherCandidates: GatherCandidates<Candidate>, | ||
): Promise<void> { | ||
const xs = await gatherCandidates(denops, bufnr, range); | ||
const commit = xs.map((v) => v.commit).join("\n"); | ||
const target = kind === "fixup" ? commit : `${kind}:${commit}`; | ||
// Do not block Vim so that users can edit commit message | ||
await denops.call("denops#notify", "gin", "command", ["", [ | ||
"commit", | ||
`--fixup=${target}`, | ||
]]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters