Skip to content

Commit 1470dcd

Browse files
committed
💥 Upgrade supported versions for Denops v7
vim-denops/denops.vim#344
1 parent d649fd6 commit 1470dcd

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ jobs:
5050
- macos-latest
5151
- ubuntu-latest
5252
version:
53-
- "1.38.x"
53+
- "1.43.x"
5454
- "1.x"
5555
host_version:
56-
- vim: "v9.0.2189"
57-
nvim: "v0.9.4"
56+
- vim: "v9.1.0399"
57+
nvim: "v0.9.5"
5858
runs-on: ${{ matrix.runner }}
5959
timeout-minutes: 15
6060
steps:

.scripts/gen-function/gen-function.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { DOCS_OVERRIDES } from "./override.ts";
99
import { transform } from "./transform.ts";
1010
import { downloadString } from "../utils.ts";
1111

12-
const VIM_VERSION = "9.0.2189";
13-
const NVIM_VERSION = "0.9.4";
12+
const VIM_VERSION = "9.1.0399";
13+
const NVIM_VERSION = "0.9.5";
1414

1515
const commonGenerateModule = "../../function/_generated.ts";
1616
const vimGenerateModule = "../../function/vim/_generated.ts";

.scripts/gen-option/gen-option.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { DOCS_OVERRIDES } from "./override.ts";
99
import { transform } from "./transform.ts";
1010
import { downloadString } from "../utils.ts";
1111

12-
const VIM_VERSION = "9.0.2189";
13-
const NVIM_VERSION = "0.9.4";
12+
const VIM_VERSION = "9.1.0399";
13+
const NVIM_VERSION = "0.9.5";
1414

1515
const commonGenerateModule = "../../option/_generated.ts";
1616
const vimGenerateModule = "../../option/vim/_generated.ts";

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 🐜 denops_std
22

3-
[![Vim 9.0.2189 or above](https://img.shields.io/badge/Vim-Support%209.0.2189-yellowgreen.svg?logo=vim)](https://github.com/vim/vim/tree/v9.0.2189)
4-
[![Neovim 0.9.4 or above](https://img.shields.io/badge/Neovim-Support%200.9.4-yellowgreen.svg?logo=neovim&logoColor=white)](https://github.com/neovim/neovim/tree/v0.9.4)
3+
[![Vim 9.1.0399 or above](https://img.shields.io/badge/Vim-Support%209.1.0399-yellowgreen.svg?logo=vim)](https://github.com/vim/vim/tree/v9.1.0399)
4+
[![Neovim 0.9.5 or above](https://img.shields.io/badge/Neovim-Support%200.9.5-yellowgreen.svg?logo=neovim&logoColor=white)](https://github.com/neovim/neovim/tree/v0.9.5)
55
[![Test](https://github.com/vim-denops/deno-denops-std/actions/workflows/test.yml/badge.svg)](https://github.com/vim-denops/deno-denops-std/actions/workflows/test.yml)
66
[![codecov](https://codecov.io/github/vim-denops/deno-denops-std/branch/main/graph/badge.svg?token=RKAZMUQ3D9)](https://codecov.io/github/vim-denops/deno-denops-std)
77
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/denops_std/mod.ts)
@@ -30,10 +30,10 @@ export function main(denops: Denops): void {
3030
// This is just an example. Developers usually should define commands directly in Vim script.
3131
await batch.batch(denops, async (denops) => {
3232
await denops.cmd(
33-
`command! HelloWorld call denops#notify("${denops.name}", "say", ["World"])`,
33+
`command! HelloWorld call denops#notify("${denops.name}", "say", ["World"])`
3434
);
3535
await denops.cmd(
36-
`command! HelloDenops call denops#notify("${denops.name}", "say", ["Denops"])`,
36+
`command! HelloDenops call denops#notify("${denops.name}", "say", ["Denops"])`
3737
);
3838
});
3939
},

0 commit comments

Comments
 (0)