mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-14 05:27:59 +08:00
ci(dein-ui.vim): fix detact script for dein-ui
This commit is contained in:
parent
dbff1b66d2
commit
ec7f9b0cdc
2
.ci/detach_plugin.sh
vendored
2
.ci/detach_plugin.sh
vendored
@ -133,6 +133,8 @@ main () {
|
|||||||
_detact autoload/SpaceVim/api/vim/compatible.vim
|
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||||||
_detact syntax/SpaceVimPlugManager.vim
|
_detact syntax/SpaceVimPlugManager.vim
|
||||||
_detact LICENSE
|
_detact LICENSE
|
||||||
|
_detact_bundle dein-ui.vim README.md
|
||||||
|
_detact_bundle dein-ui.vim plugin/deinui.vim
|
||||||
;;
|
;;
|
||||||
format.nvim)
|
format.nvim)
|
||||||
git clone https://github.com/wsdjeg/format.nvim.git detach/$1
|
git clone https://github.com/wsdjeg/format.nvim.git detach/$1
|
||||||
|
32
bundle/dein-ui.vim/README.md
vendored
Normal file
32
bundle/dein-ui.vim/README.md
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# dein-ui.vim
|
||||||
|
|
||||||
|
> _dein-ui.vim_ is an UI plugin for Shougo's dein.vim.
|
||||||
|
|
||||||
|
[![](https://spacevim.org/img/build-with-SpaceVim.svg)](https://spacevim.org)
|
||||||
|
[![GPLv3 License](https://img.spacevim.org/license-GPLv3-blue.svg)](LICENSE)
|
||||||
|
|
||||||
|
<!-- vim-markdown-toc GFM -->
|
||||||
|
|
||||||
|
- [Install](#install)
|
||||||
|
- [usage](#usage)
|
||||||
|
|
||||||
|
<!-- vim-markdown-toc -->
|
||||||
|
|
||||||
|
![UI for dein](https://user-images.githubusercontent.com/13142418/34907332-903ae968-f842-11e7-8ac9-07fcc9940a53.gif)
|
||||||
|
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
for dein.vim
|
||||||
|
|
||||||
|
```vim
|
||||||
|
call dein#add('wsdjeg/dein-ui.vim')
|
||||||
|
```
|
||||||
|
|
||||||
|
## usage
|
||||||
|
|
||||||
|
update all plugins
|
||||||
|
|
||||||
|
```log
|
||||||
|
:DeinUpdate
|
||||||
|
```
|
19
bundle/dein-ui.vim/plugin/deinui.vim
vendored
Normal file
19
bundle/dein-ui.vim/plugin/deinui.vim
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
command! -nargs=*
|
||||||
|
\ -complete=custom,SpaceVim#commands#complete_plugin
|
||||||
|
\ SPUpdate call SpaceVim#commands#update_plugin(<f-args>)
|
||||||
|
|
||||||
|
command! -nargs=+
|
||||||
|
\ -complete=custom,SpaceVim#commands#complete_plugin
|
||||||
|
\ SPReinstall call SpaceVim#commands#reinstall_plugin(<f-args>)
|
||||||
|
|
||||||
|
command! -nargs=* SPInstall call SpaceVim#commands#install_plugin(<f-args>)
|
||||||
|
|
||||||
|
|
||||||
|
command! -nargs=*
|
||||||
|
\ -complete=custom,SpaceVim#commands#complete_plugin
|
||||||
|
\ DeinUpdate call SpaceVim#commands#update_plugin(<f-args>)
|
||||||
|
|
||||||
|
let g:spacevim_plugin_manager_max_processes =
|
||||||
|
\ get(g:, 'spacevim_plugin_manager_max_processes', 8)
|
||||||
|
let g:spacevim_plugin_manager =
|
||||||
|
\ get(g:, 'spacevim_plugin_manager', 'dein')
|
Loading…
Reference in New Issue
Block a user