Skip to content

Commit

Permalink
Merge pull request #132 from lambdalisue/log-decorate
Browse files Browse the repository at this point in the history
👍 Automatically specify `--decorate`
  • Loading branch information
lambdalisue authored Mar 13, 2024
2 parents d68b3a0 + f051e87 commit d59aa6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion denops/gin/command/log/edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ export async function exec(
const args = [
"log",
"--color=always",
...formatFlags(options.flags ?? {}),
...formatFlags({
"decorate": "short",
...(options.flags ?? {}),
}),
...(unnullish(options.commitish, (v) => [v]) ?? []),
"--",
...(filenames ?? []),
Expand Down

0 comments on commit d59aa6f

Please sign in to comment.