Skip to content

Commit

Permalink
Merge pull request #11 from vim-denops/minor-changes
Browse files Browse the repository at this point in the history
☕ Minor changes
  • Loading branch information
lambdalisue authored Jul 7, 2024
2 parents edcadd4 + de1803e commit a0a0d7c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
deno.lock
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"update:commit": "deno task -q update --commit --pre-commit=fmt,lint"
},
"imports": {
"https://deno.land/x/denops_core@$MODULE_VERSION/": "./"
"jsr:@denops/core": "./mod.ts"
}
}
4 changes: 2 additions & 2 deletions denops.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export interface Denops {
* Use this type to ensure the `main` function is properly implemented like:
*
* ```ts
* import type { Entrypoint } from "https://deno.land/x/denops_core@$MODULE_VERSION/mod.ts";
* import type { Entrypoint } from "jsr:@denops/core";
*
* export const main: Entrypoint = (denops) => {
* // ...
Expand All @@ -161,7 +161,7 @@ export interface Denops {
* asynchronously when the plugin is unloaded, like:
*
* ```ts
* import type { Entrypoint } from "https://deno.land/x/denops_core@$MODULE_VERSION/mod.ts";
* import type { Entrypoint } from "jsr:@denops/core";
*
* export const main: Entrypoint = (denops) => {
* // ...
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* [deno]: https://deno.land/
* [denops.vim]: https://github.com/vim-denops/denops.vim
* [denops_std]: https://deno.land/x/denops_std
* [denops_std]: https://github.com/vim-denops/deno-denops-std
*
* @module
*/
Expand Down

0 comments on commit a0a0d7c

Please sign in to comment.