-
-
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.
Merge pull request #114 from atusy/action-fixup
👍 add fixup actions to gin-log (fixup, amend, reword)
- Loading branch information
Showing
2 changed files
with
74 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,69 @@ | ||
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, gatherCandidates), | ||
); | ||
await define( | ||
denops, | ||
bufnr, | ||
"fixup:amend", | ||
(denops, bufnr, range) => | ||
doFixupInteractive(denops, bufnr, range, "amend", gatherCandidates), | ||
); | ||
await define( | ||
denops, | ||
bufnr, | ||
"fixup:reword", | ||
(denops, bufnr, range) => | ||
doFixupInteractive(denops, bufnr, range, "reword", gatherCandidates), | ||
); | ||
await alias( | ||
denops, | ||
bufnr, | ||
"fixup", | ||
"fixup:fixup", | ||
); | ||
}); | ||
} | ||
|
||
async function doFixup( | ||
denops: Denops, | ||
bufnr: number, | ||
range: Range, | ||
gatherCandidates: GatherCandidates<Candidate>, | ||
): Promise<void> { | ||
const xs = await gatherCandidates(denops, bufnr, range); | ||
const commit = xs.map((v) => v.commit).join("\n"); | ||
await denops.dispatch("gin", "command", "", [ | ||
"commit", | ||
`--fixup=${commit}`, | ||
]); | ||
} | ||
|
||
async function doFixupInteractive( | ||
denops: Denops, | ||
bufnr: number, | ||
range: Range, | ||
kind: "amend" | "reword", | ||
gatherCandidates: GatherCandidates<Candidate>, | ||
): Promise<void> { | ||
const xs = await gatherCandidates(denops, bufnr, range); | ||
const commit = xs.map((v) => v.commit).join("\n"); | ||
// Do not block Vim so that users can edit commit message | ||
denops | ||
.dispatch("gin", "command", "", ["commit", `--fixup=${kind}:${commit}`]) | ||
.catch((e) => console.error(`failed to execute git commit: ${e}`)); | ||
} |
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