mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:30:04 +08:00
294 lines
11 KiB
Bash
Executable File
294 lines
11 KiB
Bash
Executable File
#!/usr/bin/env bash
|
||
|
||
_detact () {
|
||
cp -f ../../$1 $1
|
||
}
|
||
|
||
_detact_bundle () {
|
||
cp -f ../../bundle/$1/$2 $2
|
||
}
|
||
|
||
_checkdir () {
|
||
if [[ ! -d "$1" ]]; then
|
||
mkdir -p $1
|
||
fi
|
||
}
|
||
|
||
_default_readme () {
|
||
cat <<EOT > README.md
|
||
# $1
|
||
> $2
|
||
|
||
This plugin is automatically detach from [SpaceVim](https://github.com/SpaceVim/SpaceVim/). you can use it without SpaceVim.
|
||
EOT
|
||
}
|
||
|
||
|
||
main () {
|
||
case "$1" in
|
||
flygrep)
|
||
git clone https://github.com/wsdjeg/FlyGrep.vim.git detach/$1
|
||
cd detach/$1
|
||
_checkdir syntax/
|
||
_checkdir autoload/SpaceVim/api
|
||
_checkdir autoload/SpaceVim/api/vim
|
||
_checkdir autoload/SpaceVim/api/neovim
|
||
_checkdir autoload/SpaceVim/api/data
|
||
_checkdir autoload/SpaceVim/mapping
|
||
_checkdir autoload/SpaceVim/plugins
|
||
_detact autoload/SpaceVim/plugins/flygrep.vim
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/api/logger.vim
|
||
_detact autoload/SpaceVim/api/vim/buffer.vim
|
||
_detact autoload/SpaceVim/api/vim/regex.vim
|
||
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||
_detact autoload/SpaceVim/api/vim/floating.vim
|
||
_detact autoload/SpaceVim/api/vim/highlight.vim
|
||
_detact autoload/SpaceVim/api/vim/statusline.vim
|
||
_detact autoload/SpaceVim/api/vim/window.vim
|
||
_detact autoload/SpaceVim/api/neovim/floating.vim
|
||
_detact autoload/SpaceVim/api/data/dict.vim
|
||
_detact autoload/SpaceVim/api/data/list.vim
|
||
_detact autoload/SpaceVim/api/data/json.vim
|
||
_detact autoload/SpaceVim/api/data/string.vim
|
||
_detact autoload/SpaceVim/api/prompt.vim
|
||
_detact autoload/SpaceVim/api/job.vim
|
||
_detact autoload/SpaceVim/api/vim.vim
|
||
_detact autoload/SpaceVim/api/file.vim
|
||
_detact autoload/SpaceVim/api/system.vim
|
||
_detact autoload/SpaceVim/api/time.vim
|
||
_detact autoload/SpaceVim/mapping/search.vim
|
||
_detact autoload/SpaceVim/logger.vim
|
||
_detact syntax/SpaceVimFlyGrep.vim
|
||
_default_readme "FlyGrep.vim" "Grep on the fly in Vim/Neovim"
|
||
_detact LICENSE
|
||
_checkdir plugin
|
||
cat <<EOT > plugin/FlyGrep.vim
|
||
"=============================================================================
|
||
" FlyGrep.vim --- Fly grep in vim
|
||
" Copyright (c) 2016-2017 Shidong Wang & Contributors
|
||
" Author: Shidong Wang < wsdjeg@outlook.com >
|
||
" URL: https://github.com/wsdjeg/FlyGrep.vim
|
||
" License: MIT license
|
||
"=============================================================================
|
||
|
||
""
|
||
" @section Introduction, intro
|
||
" @stylized FlyGrep
|
||
" @library
|
||
" @order intro version dicts functions exceptions layers api faq
|
||
" Fly grep in vim, written in pure vim script for MacVim, gvim and vim version
|
||
" 8.0+.
|
||
"
|
||
|
||
""
|
||
" @section CONFIGURATION, config
|
||
" FlyGrep has strong default options, but you can also change the option
|
||
" yourself.
|
||
|
||
""
|
||
" FlyGrep will start to searching code after a delay, the default value is
|
||
" 500ms.
|
||
let g:FlyGrep_input_delay = get(g:, 'FlyGrep_input_delay', 500)
|
||
|
||
""
|
||
" A list of searching tools will be userd.
|
||
let g:FlyGrep_search_tools = get(g:, 'FlyGrep_search_tools', ['ag', 'rg', 'grep', 'pt', 'ack'])
|
||
|
||
let g:spacevim_data_dir = get(g:, 'spacevim_data_dir', '~/.cache')
|
||
|
||
""
|
||
" Enable FlyGrep statusline
|
||
let g:FlyGrep_enable_statusline = get(g:, 'FlyGrep_enable_statusline', 1)
|
||
|
||
""
|
||
" Set FlyGrep default command prompt
|
||
let g:spacevim_commandline_prompt = get(g:, 'spacevim_commandline_prompt', '➭')
|
||
|
||
command! -nargs=0 FlyGrep call FlyGrep#open({})
|
||
EOT
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_flygrep https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/FlyGrep.vim.git
|
||
git push wsdjeg_flygrep master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
dein-ui)
|
||
git clone https://github.com/wsdjeg/dein-ui.vim.git detach/$1
|
||
cd detach/$1
|
||
_checkdir syntax/
|
||
_checkdir autoload/SpaceVim/api
|
||
_checkdir autoload/SpaceVim/api/data
|
||
_checkdir autoload/SpaceVim/api/vim
|
||
_checkdir autoload/SpaceVim/mapping
|
||
_checkdir autoload/SpaceVim/plugins
|
||
_detact autoload/SpaceVim/plugins/manager.vim
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/commands.vim
|
||
_detact autoload/SpaceVim/logger.vim
|
||
_detact autoload/SpaceVim/api/job.vim
|
||
_detact autoload/SpaceVim/api/system.vim
|
||
_detact autoload/SpaceVim/api/data/list.vim
|
||
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||
_detact syntax/SpaceVimPlugManager.vim
|
||
_detact LICENSE
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_dein_ui https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/dein-ui.vim.git
|
||
git push wsdjeg_dein_ui master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
iedit)
|
||
git clone https://github.com/wsdjeg/iedit.vim.git detach/$1
|
||
cd detach/$1
|
||
_checkdir autoload/SpaceVim/api/vim
|
||
_checkdir autoload/SpaceVim/api/data
|
||
_checkdir autoload/SpaceVim/plugins
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||
_detact autoload/SpaceVim/api/vim/highlight.vim
|
||
_detact autoload/SpaceVim/api/data/string.vim
|
||
_detact autoload/SpaceVim/plugins/iedit.vim
|
||
_checkdir autoload/plugin
|
||
cat <<EOT > autoload/plugin/iedit.vim
|
||
"=============================================================================
|
||
" iedit.vim --- multiple cursor support for neovim and vim
|
||
" Copyright (c) 2016-2021 Shidong Wang & Contributors
|
||
" Author: Shidong Wang < wsdjeg@outlook.com >
|
||
" URL: https://github.com/wsdjeg/iedit.vim
|
||
" License: MIT license
|
||
"=============================================================================
|
||
|
||
""
|
||
" @section Introduction, intro
|
||
" @stylized iedit.vim
|
||
" @library
|
||
" @order intro version dicts functions exceptions layers api faq
|
||
" multiple cursor in vim, written in pure vim script for MacVim, gvim and vim version
|
||
" 8.0+.
|
||
"
|
||
|
||
command! -nargs=0 Iedit call SpaceVim#plugins#iedit#start()
|
||
EOT
|
||
_detact LICENSE
|
||
_default_readme "iedit.vim" "multiple cussor support for Vim/Neovim"
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_vim_todo https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/iedit.vim.git
|
||
git push wsdjeg_vim_todo master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
vim-todo)
|
||
git clone https://github.com/wsdjeg/vim-todo.git detach/$1
|
||
cd detach/$1
|
||
_checkdir syntax/
|
||
_detact syntax/SpaceVimTodoManager.vim
|
||
_checkdir autoload/SpaceVim/api/vim
|
||
_checkdir autoload/SpaceVim/api/data
|
||
_checkdir autoload/SpaceVim/plugins
|
||
_checkdir autoload/SpaceVim/mapping
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/api/logger.vim
|
||
_detact autoload/SpaceVim/api/job.vim
|
||
_detact autoload/SpaceVim/api/system.vim
|
||
_detact autoload/SpaceVim/api/data/string.vim
|
||
_detact autoload/SpaceVim/api/file.vim
|
||
_detact autoload/SpaceVim/api/vim/buffer.vim
|
||
_detact autoload/SpaceVim/api/vim/regex.vim
|
||
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||
_detact autoload/SpaceVim/logger.vim
|
||
_detact autoload/SpaceVim/mapping/search.vim
|
||
_detact autoload/SpaceVim/plugins/todo.vim
|
||
_checkdir plugin
|
||
cat <<EOT > plugin/todo.vim
|
||
"=============================================================================
|
||
" todo.vim --- todo manager for SpaceVim
|
||
" Copyright (c) 2016-2022 Wang Shidong & Contributors
|
||
" Author: Wang Shidong < wsdjeg@outlook.com >
|
||
" URL: https://spacevim.org
|
||
" License: GPLv3
|
||
"=============================================================================
|
||
|
||
command! OpenTodo call todo#open()
|
||
EOT
|
||
_detact LICENSE
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_vim_todo https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/vim-todo.git
|
||
git push wsdjeg_vim_todo master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
vim-chat)
|
||
git clone https://github.com/wsdjeg/vim-chat.git detach/$1
|
||
cd detach/$1
|
||
_checkdir syntax/
|
||
_checkdir doc/
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/api/job.vim
|
||
_detact LICENSE
|
||
_detact_bundle vim-chat autoload/chat.vim
|
||
_detact_bundle vim-chat autoload/chat/gitter.vim
|
||
_detact_bundle vim-chat autoload/chat/logger.vim
|
||
_detact_bundle vim-chat autoload/chat/notify.vim
|
||
_detact_bundle vim-chat autoload/chat/qq.vim
|
||
_detact_bundle vim-chat autoload/chat/weixin.vim
|
||
_detact_bundle vim-chat doc/vim-chat.txt
|
||
_detact_bundle vim-chat syntax/vimchat.vim
|
||
_detact_bundle vim-chat addon-info.json
|
||
_detact_bundle vim-chat README.md
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_vim_chat https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/vim-chat.git
|
||
git push wsdjeg_vim_chat master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
scrollbar.vim)
|
||
git clone https://github.com/wsdjeg/scrollbar.vim.git detach/$1
|
||
cd detach/$1
|
||
_checkdir autoload/SpaceVim/api/
|
||
_checkdir autoload/SpaceVim/api/vim
|
||
_detact autoload/SpaceVim/api.vim
|
||
_detact autoload/SpaceVim/api/vim.vim
|
||
_detact autoload/SpaceVim/api/vim/buffer.vim
|
||
_detact autoload/SpaceVim/api/vim/window.vim
|
||
_checkdir autoload/SpaceVim/plugins/
|
||
_detact autoload/SpaceVim/plugins/scrollbar.vim
|
||
_detact LICENSE
|
||
_default_readme "scrollbar.vim" "floating scrollbar support for neovim/vim[wip]"
|
||
git add .
|
||
git config user.email "wsdjeg@qq.com"
|
||
git config user.name "SpaceVimBot"
|
||
git commit -m "Auto Update"
|
||
git remote add wsdjeg_scrollbar https://SpaceVimBot:${BOTSECRET}@github.com/wsdjeg/scrollbar.vim.git
|
||
git push wsdjeg_scrollbar master
|
||
cd -
|
||
rm -rf detach/$1
|
||
exit 0
|
||
;;
|
||
spacevim-theme)
|
||
exit 0
|
||
esac
|
||
}
|
||
|
||
main $@
|