You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mod.ts
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,24 @@
1
1
/**
2
-
* This module is a fundamental component of [denops.vim], an ecosystem for crafting plugins in [Deno] for Vim/Neovim.
2
+
* This is a core module of [denops.vim], an ecosystem for creating Vim/Neovim
3
+
* plugin in [Deno].
3
4
*
4
-
* It's essential to highlight that the recommended practice for most users is to utilize the [denops_std] module when developing plugins for [denops.vim].
5
-
* The current module is structured as a foundational layer within [denops_std], and utilizing it directly from plugins is **strongly discouraged**.
5
+
* > [!WARNING]
6
+
* >
7
+
* > This module is mainly for internal use. It's **strongly discouraged** to
8
+
* > utilize this module directly from plugins. Use the [@denops/std] module
9
+
* > instead.
10
+
*
11
+
* ```ts
12
+
* import type { Entrypoint } from "jsr:@denops/core";
0 commit comments