Skip to content

Commit

Permalink
Update required version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Nov 25, 2024
1 parent b386007 commit 4b86a38
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Please read [help](doc/ddc.txt) for details.
Ddc is the abbreviation of "dark deno-powered completion". It provides an
extensible and asynchronous completion framework for Vim/Neovim.

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

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

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

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

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

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

## Install

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

### Requirements

Expand Down
4 changes: 2 additions & 2 deletions autoload/ddc/denops.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ function ddc#denops#_init(opts = {}) abort
return
endif

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

Expand Down
2 changes: 1 addition & 1 deletion doc/ddc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ It does not work with zero configuration. You can use other plugins.
==============================================================================
INSTALL *ddc-install*

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

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

0 comments on commit 4b86a38

Please sign in to comment.