Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shougo/dpp-ext-installer
Installer ext for dpp.vim
https://github.com/shougo/dpp-ext-installer
dpp-exts dpp-vim
Last synced: 3 months ago
JSON representation
Installer ext for dpp.vim
- Host: GitHub
- URL: https://github.com/shougo/dpp-ext-installer
- Owner: Shougo
- License: mit
- Created: 2023-10-12T10:07:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-07T04:20:03.000Z (4 months ago)
- Last Synced: 2024-09-07T05:36:05.356Z (4 months ago)
- Topics: dpp-exts, dpp-vim
- Language: TypeScript
- Homepage:
- Size: 118 KB
- Stars: 5
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dpp-ext-installer
This ext implements plugins installer.
## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### dpp.vim
https://github.com/Shougo/dpp.vim
## Configuration
```vim
" Install plugins
call dpp#async_ext_action('installer', 'install')" Update plugins
call dpp#async_ext_action('installer', 'update')" Update plugins with specify rollback revisions
call dpp#async_ext_action('installer', 'update',
\ #{ rollback: 'latest' })" Update dpp.vim
call dpp#async_ext_action('installer', 'update',
\ #{ names: ['dpp.vim'] })" Check not updated plugins
call dpp#async_ext_action('installer', 'checkNotUpdated')" Get not installed plugins
echo dpp#sync_ext_action('installer', 'getNotInstalled')
```## Screenshots
![install UI](install_ui.png)