Skip to content

Commit ab2730e

Browse files
committed
💪 Re-organize function module for code generation
1 parent 6e69459 commit ab2730e

File tree

6 files changed

+14
-2
lines changed

6 files changed

+14
-2
lines changed

denops_std/function/_manual.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./buffer.ts";
2+
export * from "./common.ts";

denops_std/function/mod.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
export * from "./buffer.ts";
2-
export * from "./common.ts";
1+
// NOTE:
2+
// Do NOT add modules manually to this file.
3+
// Add modules to `_manual.ts` instead for manually written modules.
4+
export * from "./_manual.ts";

denops_std/function/nvim/_manual.ts

Whitespace-only changes.

denops_std/function/nvim/mod.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// NOTE:
2+
// Do NOT add modules manually to this file.
3+
// Add modules to `_manual.ts` instead for manually written modules.
4+
export * from "./_manual.ts";

denops_std/function/vim/_manual.ts

Whitespace-only changes.

denops_std/function/vim/mod.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// NOTE:
2+
// Do NOT add modules manually to this file.
3+
// Add modules to `_manual.ts` instead for manually written modules.
4+
export * from "./_manual.ts";

0 commit comments

Comments
 (0)