Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion action/gin_action_execute.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { useEval } from "@denops/std/eval/use-eval";
import { feedkeys } from "@denops/std/function";
import type { RawString } from "@denops/std/eval/string";
import { type Action, defineAction } from "@vim-fall/std/action";
import type { Detail } from "@vim-fall/extra/source/gin-action";

type Detail = {
gin: { actionKey: RawString };
};

/**
* Execute a gin action on the current vim-gin's buffer.
Expand Down
2 changes: 1 addition & 1 deletion source/gin_action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { type RawString, rawString as r } from "@denops/std/eval/string";
import { enumerate } from "@core/iterutil/enumerate";
import { defineSource, type Source } from "@vim-fall/std/source";

export type Detail = {
type Detail = {
gin: { actionKey: RawString };
};

Expand Down