-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎉 For Denops v7 #8
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
654c7eb
:+1: Add `interrupted` attribute
lambdalisue f56fc40
:+1: run doc test on test workflow
Milly 42e53eb
Merge pull request #10 from vim-denops/doctest
lambdalisue a0b9aef
:+1: add `AsyncDisposable` to the return type of `Entrypoint`
Milly edcadd4
Merge pull request #9 from vim-denops/plugin-dispose
lambdalisue f26eee5
:coffee: Add `.gitignore`
lambdalisue de1803e
:memo: Use JSR instead in JSDoc
lambdalisue a0a0d7c
Merge pull request #11 from vim-denops/minor-changes
lambdalisue 2f20f36
:memo: Remove deno.land badges
lambdalisue cecefc5
:bug: Fix `interrupted` property of `Denops`
lambdalisue cbe82eb
:memo: Update docs
lambdalisue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | ||
|
||
[![JSR](https://jsr.io/badges/@denops/core)](https://jsr.io/@denops/core) | ||
[![denoland](https://img.shields.io/github/v/release/vim-denops/deno-denops-core?logo=deno&label=denoland)](https://deno.land/x/denops_core) | ||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/denops_core/mod.ts) | ||
[![test](https://github.com/vim-denops/deno-denops/workflows/test/badge.svg)](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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct the grammatical number.
The noun "plugin" should be pluralized to "plugins" for grammatical correctness.
Committable suggestion
Tools
LanguageTool