Skip to content

Commit a0a0d7c

Browse files
authored
Merge pull request #11 from vim-denops/minor-changes
☕ Minor changes
2 parents edcadd4 + de1803e commit a0a0d7c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deno.lock

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"update:commit": "deno task -q update --commit --pre-commit=fmt,lint"
1212
},
1313
"imports": {
14-
"https://deno.land/x/denops_core@$MODULE_VERSION/": "./"
14+
"jsr:@denops/core": "./mod.ts"
1515
}
1616
}

denops.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export interface Denops {
150150
* Use this type to ensure the `main` function is properly implemented like:
151151
*
152152
* ```ts
153-
* import type { Entrypoint } from "https://deno.land/x/denops_core@$MODULE_VERSION/mod.ts";
153+
* import type { Entrypoint } from "jsr:@denops/core";
154154
*
155155
* export const main: Entrypoint = (denops) => {
156156
* // ...
@@ -161,7 +161,7 @@ export interface Denops {
161161
* asynchronously when the plugin is unloaded, like:
162162
*
163163
* ```ts
164-
* import type { Entrypoint } from "https://deno.land/x/denops_core@$MODULE_VERSION/mod.ts";
164+
* import type { Entrypoint } from "jsr:@denops/core";
165165
*
166166
* export const main: Entrypoint = (denops) => {
167167
* // ...

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* [deno]: https://deno.land/
88
* [denops.vim]: https://github.com/vim-denops/denops.vim
9-
* [denops_std]: https://deno.land/x/denops_std
9+
* [denops_std]: https://github.com/vim-denops/deno-denops-std
1010
*
1111
* @module
1212
*/

0 commit comments

Comments
 (0)