Skip to content

Commit 4b86a38

Browse files
committed
Update required version
1 parent b386007 commit 4b86a38

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ Please read [help](doc/ddc.txt) for details.
1212
Ddc is the abbreviation of "dark deno-powered completion". It provides an
1313
extensible and asynchronous completion framework for Vim/Neovim.
1414

15-
NOTE: I have created
16-
[Japanese article](https://zenn.dev/shougo/articles/ddc-vim-beta) for ddc.vim.
17-
After that I have created the next article
18-
[Japanese article](https://zenn.dev/shougo/articles/ddc-vim-pum-vim) for both
19-
ddc.vim and pum.vim recently. You can read them by translation service.
15+
NOTE: I have created [Japanese
16+
article](https://zenn.dev/shougo/articles/ddc-vim-beta) for ddc.vim. After that
17+
I have created the next article [Japanese
18+
article](https://zenn.dev/shougo/articles/ddc-vim-pum-vim) for both ddc.vim and
19+
pum.vim recently. You can read them by translation service.
2020

21-
The development is supported by
22-
[github sponsors](https://github.com/sponsors/Shougo/). Thank you!
21+
The development is supported by [github
22+
sponsors](https://github.com/sponsors/Shougo/). Thank you!
2323

2424
<!-- vim-markdown-toc GFM -->
2525

@@ -48,13 +48,14 @@ Please see: https://github.com/Shougo/ddc.vim/issues/32
4848

4949
![nvim-lsp](https://user-images.githubusercontent.com/41495/129931010-258d3917-7379-4b40-b3cc-2313c9fbe600.png)
5050

51-
![command line completion](https://user-images.githubusercontent.com/41495/135711007-8c24c606-2c5d-41f5-a445-dce0127aa97a.png)
51+
![command line
52+
completion](https://user-images.githubusercontent.com/41495/135711007-8c24c606-2c5d-41f5-a445-dce0127aa97a.png)
5253

5354
## Install
5455

55-
**NOTE:** Ddc.vim requires Neovim (0.8.0+ and of course, **latest** is
56-
recommended) or Vim 9.0+. See [requirements](#requirements) if you aren't sure
57-
whether you have this.
56+
**NOTE:** Ddc.vim requires Neovim (0.10.0+ and of course, **latest** is
57+
recommended) or Vim 9.1.0448+. See [requirements](#requirements) if you aren't
58+
sure whether you have this.
5859

5960
### Requirements
6061

autoload/ddc/denops.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ function ddc#denops#_init(opts = {}) abort
33
return
44
endif
55

6-
if !has('patch-9.0.1276') && !has('nvim-0.8')
6+
if !has('patch-9.1.0448') && !has('nvim-0.10')
77
call ddc#util#print_error(
8-
\ 'ddc requires Vim 9.0.1276+ or neovim 0.8.0+.')
8+
\ 'ddc requires Vim 9.1.0448+ or neovim 0.10.0+.')
99
return
1010
endif
1111

doc/ddc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ It does not work with zero configuration. You can use other plugins.
5050
==============================================================================
5151
INSTALL *ddc-install*
5252

53-
NOTE: Ddc.vim requires Neovim (0.8.0+) or Vim 9.0.1276+ (latest is
53+
NOTE: Ddc.vim requires Neovim (0.10.0+) or Vim 9.1.0448+ (latest is
5454
recommended).
5555

5656
Please install both Deno 1.45+ and "denops.vim" v7.0+.

0 commit comments

Comments
 (0)