-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vim-denops/v7-pre
🎉 For Denops v7
- Loading branch information
Showing
6 changed files
with
68 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deno.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
# 🪐 denops_core | ||
|
||
[](https://jsr.io/@denops/core) | ||
[](https://deno.land/x/denops_core) | ||
[](https://doc.deno.land/https/deno.land/x/denops_core/mod.ts) | ||
[](https://github.com/vim-denops/deno-denops/actions?query=workflow%3Atest) | ||
|
||
This module is a fundamental component of [denops.vim], an ecosystem for | ||
crafting plugins in [Deno] for Vim/Neovim. | ||
This is a core module of [denops.vim], an ecosystem for creating Vim/Neovim | ||
plugin in [Deno]. | ||
|
||
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]. The | ||
current module is structured as a foundational layer within [denops_std], and | ||
utilizing it directly from plugins is **strongly discouraged**. | ||
> [!WARNING] | ||
> | ||
> This module is mainly for internal use. It's **strongly discouraged** to | ||
> utilize this module directly from plugins. Use the [@denops/std] module | ||
> instead. | ||
```ts | ||
import type { Entrypoint } from "jsr:@denops/core"; | ||
|
||
export const main: Entrypoint = (denops) => { | ||
// ... | ||
}; | ||
``` | ||
|
||
[deno]: https://deno.land/ | ||
[denops.vim]: https://github.com/vim-denops/denops.vim | ||
[denops_std]: https://deno.land/x/denops_std | ||
[@denops/std]: https://jsr.io/@denops/std | ||
|
||
# License | ||
|
||
The code follows the MIT license, as stated in [LICENSE](./LICENSE). | ||
Contributors need to agree that any modifications sent to this repository follow | ||
the license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters