Skip to content

Commit

Permalink
Use Neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Nov 21, 2024
1 parent b1180c0 commit 8f2c4ed
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dpp.vim

> Dark Powered Plugin manager for Vim/NeoVim
> Dark Powered Plugin manager for Vim/Neovim
If you don't want to configure plugins, you don't have to use the plugin
manager. It does not work with zero configuration. You can use other plugin
Expand Down Expand Up @@ -31,7 +31,7 @@ see "FAQ" section in [help](doc/dpp.txt).

## Install

**Note:** Dpp.vim requires NeoVim (0.10.0+ and of course, **latest** is
**Note:** Dpp.vim requires Neovim (0.10.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
2 changes: 1 addition & 1 deletion autoload/dpp/denops.vim
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function s:init() abort
endif

if !has('patch-9.0.1276') && !has('nvim-0.10')
call dpp#util#_error('dpp.vim requires Vim 9.0.1276+ or NeoVim 0.10+.')
call dpp#util#_error('dpp.vim requires Vim 9.0.1276+ or Neovim 0.10+.')
return 1
endif

Expand Down
2 changes: 1 addition & 1 deletion denops/dpp/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const main: Entrypoint = (denops: Denops) => {
console.warn("*".repeat(80));
console.warn(`Deno module cache issue is detected.`);
console.warn(
`Execute '!deno cache --reload "${configPath}"' and restart Vim/NeoVim.`,
`Execute '!deno cache --reload "${configPath}"' and restart Vim/Neovim.`,
);
console.warn("*".repeat(80));
}
Expand Down
2 changes: 1 addition & 1 deletion denops/dpp/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Loader {
console.warn("*".repeat(80));
console.warn(`Deno module cache issue is detected.`);
console.warn(
`Execute '!deno cache --reload "${path}"' and restart Vim/NeoVim.`,
`Execute '!deno cache --reload "${path}"' and restart Vim/Neovim.`,
);
console.warn("*".repeat(80));
}
Expand Down
30 changes: 15 additions & 15 deletions doc/dpp.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*dpp.txt* Dark powered plugin manager for Vim/NeoVim
*dpp.txt* Dark powered plugin manager for Vim/Neovim

Author: Shougo <Shougo.Matsu at gmail.com>
License: MIT license
Expand Down Expand Up @@ -44,7 +44,7 @@ managers.
==============================================================================
INSTALL *dpp-install*

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

Please install both Deno 1.45+ and "denops.vim" v7.0+.
Expand Down Expand Up @@ -94,7 +94,7 @@ inlineVimrcs (string[])
NOTE: It must be set before |dpp#make_state()|.
NOTE: The files must not be included "<<" pattern(here
document). It breaks the parser.
NOTE: It also supports ".lua" file for NeoVim.
NOTE: It also supports ".lua" file for Neovim.

Defaults: []

Expand Down Expand Up @@ -369,8 +369,8 @@ on_if (String)
on_lua (List) or (String)
If it is matched to the required lua module root, dpp will
call |dpp#source()|.
NOTE: It is for NeoVim only.
NOTE: It does not work for NeoVim standard modules and require
NOTE: It is for Neovim only.
NOTE: It does not work for Neovim standard modules and require
in |vim.loop| modules.
NOTE: You cannot require on_lua plugins in
|dpp-plugin-option-hook_add|. Because the plugins are not
Expand Down Expand Up @@ -563,14 +563,14 @@ hook_source (String) or (Function)
lua_add (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_add| key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.

*dpp-plugin-option-lua_depends_update*
lua_depends_update (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_depends_update|
key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.
NOTE: To use the feature, you need to install
"dpp-ext-installer".
https://github.com/Shougo/dpp-ext-installer
Expand All @@ -579,7 +579,7 @@ lua_depends_update (String)
lua_done_update (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_done_update| key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.
NOTE: To use the feature, you need to install
"dpp-ext-installer".
https://github.com/Shougo/dpp-ext-installer
Expand All @@ -588,14 +588,14 @@ lua_done_update (String)
lua_post_sources (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_post_source| key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.
NOTE: |dpp-plugin-option-rtp| must not be empty string.

*dpp-plugin-option-lua_post_update*
lua_post_update (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_post_update| key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.
NOTE: To use the feature, you need to install
"dpp-ext-installer".
https://github.com/Shougo/dpp-ext-installer
Expand All @@ -604,7 +604,7 @@ lua_post_update (String)
lua_source (String)
Lua language string hook instead of Vim script.
It is converted to |dpp-plugin-option-hook_source| key.
NOTE: It works only for NeoVim or |+lua|.
NOTE: It works only for Neovim or |+lua|.
NOTE: |dpp-plugin-option-rtp| must not be empty string.

------------------------------------------------------------------------------
Expand Down Expand Up @@ -909,7 +909,7 @@ FAQ 8: |dpp-faq-8|
*dpp-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 All @@ -918,15 +918,15 @@ plugins. You can donate money to help me!
Q: What means "dark powered"?

A: I think text editor is everything in the world. I want to do everything in
Vim(NeoVim) like Emacs. It is not allowed by |design-not| in Vim. It is not
Vim(Neovim) like Emacs. It is not allowed by |design-not| in Vim. It is not
the light way to use Vim. So I have defined it as the dark way. I am the dark
Vimmer. My plugins are dark powered.

*dpp-faq-3*
Q: Why dpp.vim uses Deno?

A: Deno is asynchronous and faster than Vim script and it can be used in both
Vim and NeoVim. The features are what I desired.
Vim and Neovim. The features are what I desired.
I have created some plugins by TypeScript. The development is very fun and
easy to maintain.

Expand Down Expand Up @@ -994,7 +994,7 @@ A: You can remove them like below.
*dpp-faq-8*
Q: Why filetype plugin and detection are disabled in default?

A: Because it is Vim's default behavior. Some plugin managers and NeoVim is
A: Because it is Vim's default behavior. Some plugin managers and Neovim is
default enabled for the features.
But I don't like to enable the feature by default because it affects the
editor performance. You must explicitly enable it if necessary.
Expand Down
2 changes: 1 addition & 1 deletion pkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dpp.vim",
"description": "Dark Powered Plugin manager for Vim/NeoVim",
"description": "Dark Powered Plugin manager for Vim/Neovim",
"engines": {
"nvim": "^0.10.0",
"vim": "^9.0.1276"
Expand Down

0 comments on commit 8f2c4ed

Please sign in to comment.