Skip to content

Commit da24bb7

Browse files
authored
Merge pull request #2 from mityu/fix-export
2 parents 7dbf353 + bb8f0ce commit da24bb7

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

action/gin_action_execute.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import { useEval } from "@denops/std/eval/use-eval";
22
import { feedkeys } from "@denops/std/function";
3+
import type { RawString } from "@denops/std/eval/string";
34
import { type Action, defineAction } from "@vim-fall/std/action";
4-
import type { Detail } from "@vim-fall/extra/source/gin-action";
5+
6+
type Detail = {
7+
gin: { actionKey: RawString };
8+
};
59

610
/**
711
* Execute a gin action on the current vim-gin's buffer.

source/gin_action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { type RawString, rawString as r } from "@denops/std/eval/string";
33
import { enumerate } from "@core/iterutil/enumerate";
44
import { defineSource, type Source } from "@vim-fall/std/source";
55

6-
export type Detail = {
6+
type Detail = {
77
gin: { actionKey: RawString };
88
};
99

0 commit comments

Comments
 (0)