Skip to content

Commit

Permalink
Use NeoVim instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Oct 16, 2024
1 parent 53ba00f commit 9bb89d8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ddu.vim

> Dark deno-powered UI framework for neovim/Vim
> Dark deno-powered UI framework for NeoVim/Vim
If you don't want to configure plugins, you don't have to use the plugin. It
does not work with zero configuration. You can use other plugins.
Expand All @@ -13,7 +13,7 @@ NOTE: I have created
[Japanese article](https://zenn.dev/shougo/articles/ddu-vim-beta) for ddu.vim.

Ddu is the abbreviation of "dark deno-powered UI". It provides an extensible and
asynchronous UI framework for neovim/Vim.
asynchronous UI framework for NeoVim/Vim.

The development is supported by
[github sponsors](https://github.com/sponsors/Shougo/). Thank you!
Expand All @@ -29,12 +29,12 @@ The development is supported by
## Introduction

I have chosen denops.vim framework to create new plugin. Because denops.vim is
better than neovim Python interface.
better than NeoVim Python interface.

- Easy to setup
- Minimal dependency
- Stability
- neovim/Vim compatibility
- NeoVim/Vim compatibility
- Speed
- Library
- Easy to hack
Expand All @@ -47,7 +47,7 @@ Please see: https://github.com/Shougo/ddu.vim/issues/10

## Install

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

Expand Down
24 changes: 12 additions & 12 deletions doc/ddu.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*ddu.txt* Dark deno-powered UI framework for neovim/Vim
*ddu.txt* Dark deno-powered UI framework for NeoVim/Vim

Author: Shougo <Shougo.Matsu at gmail.com>
License: MIT license
Expand Down Expand Up @@ -64,7 +64,7 @@ It does not work with zero configuration. You can use other plugins.
==============================================================================
INSTALL *ddu-install*

NOTE: ddu.vim requires Neovim (0.8.0+) or Vim 9.0.1276+ (latest is
NOTE: ddu.vim requires NeoVim (0.8.0+) or Vim 9.0.1276+ (latest is
recommended).

Please install both Deno 1.45+ and "denops.vim" v7.0+.
Expand Down Expand Up @@ -331,7 +331,7 @@ ddu#get_items([{options}])
Creates a new Ddu and get items without UI.
NOTE: You cannot call it in |vim_starting|. Because
denops.vim is not initialized.
NOTE: It blocks Vim/neovim UI.
NOTE: It blocks Vim/NeoVim UI.

Refer to |ddu-options| about {options}. If you skip a value,
it uses the default value.
Expand Down Expand Up @@ -1305,7 +1305,7 @@ highlights (object[]) (Optional)

name (string)
The highlight name. It is used for |prop_type_add()| in Vim.
It is not used in Neovim.
It is not used in NeoVim.
NOTE: Each name must be unique for the highlight group.
Because of possible interference with other plugins, a naming
convention like `ddu-{type}-{name}-{group}` is recommended.
Expand Down Expand Up @@ -1423,7 +1423,7 @@ getText (function) (Required)
The text length must be same with
|ddu-column-attribute-getLength|.
NOTE: The highlight length is not same with display width.
It is Vim/neovim highlight feature.
It is Vim/NeoVim highlight feature.

*ddu-column-attribute-onInit*
onInit (function) (Optional)
Expand Down Expand Up @@ -1480,7 +1480,7 @@ NoFilePreviewer

*ddu-previewer-TerminalPreviewer*
TerminalPreviewer
Preview type which uses Vim/Neovim's |:terminal| feature.
Preview type which uses Vim/NeoVim's |:terminal| feature.


------------------------------------------------------------------------------
Expand Down Expand Up @@ -1577,7 +1577,7 @@ FAQ 7: |ddu-faq-7|
*ddu-faq-1*
Q: How to donate money to you?

A: I have started github sponsorship to spend more time for Vim/neovim
A: I have started github sponsorship to spend more time for Vim/NeoVim
plugins. You can donate money to help me!

https://github.com/sponsors/Shougo
Expand Down Expand Up @@ -1684,13 +1684,13 @@ COMPATIBILITY *ddu-compatibility*
* item actions can close UI when all items are gathered.

2023.07.07
* Vim 9.0.1276+ or neovim 0.8+ is required to support the latest MacVim.
* Vim 9.0.1276+ or NeoVim 0.8+ is required to support the latest MacVim.

2023.07.07
* Vim 9.0.1499+ or neovim 0.8+ is required.
* Vim 9.0.1499+ or NeoVim 0.8+ is required.

2023.06.30
* Vim 9.0+ or neovim 0.8+ is required.
* Vim 9.0+ or NeoVim 0.8+ is required.

2023.06.19
* Change path type to "string | string[]".
Expand All @@ -1715,7 +1715,7 @@ COMPATIBILITY *ddu-compatibility*
* Remove "searchPath" from UI interface.

2022.11.18
* neovim 0.8 is required.
* NeoVim 0.8 is required.

2022.03.27
* Some ddu#util functions are not public.
Expand All @@ -1727,7 +1727,7 @@ COMPATIBILITY *ddu-compatibility*
* Replace ddu#quit() to ddu#event().

2022.02.04
* neovim 0.6 is required.
* NeoVim 0.6 is required.
* Users must set default kind.
* Cannot mix multiple kinds/sources for item action.

Expand Down

0 comments on commit 9bb89d8

Please sign in to comment.