mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 01:50:05 +08:00
Compare commits
4 Commits
e62be368ff
...
b808b8126a
Author | SHA1 | Date | |
---|---|---|---|
|
b808b8126a | ||
|
52c637430e | ||
|
2af2046c15 | ||
|
f41f1e4d93 |
@ -429,12 +429,21 @@ EOT
|
|||||||
cd detach/$1
|
cd detach/$1
|
||||||
_checkdir autoload/SpaceVim/api/
|
_checkdir autoload/SpaceVim/api/
|
||||||
_checkdir autoload/SpaceVim/api/vim
|
_checkdir autoload/SpaceVim/api/vim
|
||||||
|
_checkdir autoload/SpaceVim/api/neovim
|
||||||
|
_checkdir autoload/SpaceVim/api/data
|
||||||
_detact autoload/SpaceVim/api.vim
|
_detact autoload/SpaceVim/api.vim
|
||||||
_detact autoload/SpaceVim/api/vim.vim
|
_detact autoload/SpaceVim/api/vim.vim
|
||||||
|
_detact autoload/SpaceVim/api/system.vim
|
||||||
_detact autoload/SpaceVim/api/logger.vim
|
_detact autoload/SpaceVim/api/logger.vim
|
||||||
_detact autoload/SpaceVim/api/time.vim
|
_detact autoload/SpaceVim/api/time.vim
|
||||||
|
_detact autoload/SpaceVim/api/vim/compatible.vim
|
||||||
_detact autoload/SpaceVim/api/vim/buffer.vim
|
_detact autoload/SpaceVim/api/vim/buffer.vim
|
||||||
_detact autoload/SpaceVim/api/vim/window.vim
|
_detact autoload/SpaceVim/api/vim/window.vim
|
||||||
|
_detact autoload/SpaceVim/api/vim/floating.vim
|
||||||
|
_detact autoload/SpaceVim/api/vim/highlight.vim
|
||||||
|
_detact autoload/SpaceVim/api/neovim/floating.vim
|
||||||
|
_detact autoload/SpaceVim/api/data/dict.vim
|
||||||
|
_detact autoload/SpaceVim/api/data/string.vim
|
||||||
_checkdir autoload/SpaceVim/plugins/
|
_checkdir autoload/SpaceVim/plugins/
|
||||||
_detact autoload/SpaceVim/plugins/scrollbar.vim
|
_detact autoload/SpaceVim/plugins/scrollbar.vim
|
||||||
_detact LICENSE
|
_detact LICENSE
|
||||||
|
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
@ -71,7 +71,7 @@ jobs:
|
|||||||
vimtag: v0.4.0
|
vimtag: v0.4.0
|
||||||
- vimbin: nvim
|
- vimbin: nvim
|
||||||
vimtag: v0.3.8
|
vimtag: v0.3.8
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
env:
|
env:
|
||||||
VIM_BIN: ${{ matrix.vimbin }}
|
VIM_BIN: ${{ matrix.vimbin }}
|
||||||
VIM_TAG: ${{ matrix.vimtag }}
|
VIM_TAG: ${{ matrix.vimtag }}
|
||||||
|
@ -140,8 +140,10 @@ function! SpaceVim#default#options() abort
|
|||||||
" Do not wrap lone lines
|
" Do not wrap lone lines
|
||||||
set nowrap
|
set nowrap
|
||||||
|
|
||||||
|
if exists('&belloff')
|
||||||
" disable all bell
|
" disable all bell
|
||||||
set belloff=all
|
set belloff=all
|
||||||
|
endif
|
||||||
|
|
||||||
set foldtext=SpaceVim#default#Customfoldtext()
|
set foldtext=SpaceVim#default#Customfoldtext()
|
||||||
|
|
||||||
|
@ -69,3 +69,9 @@ function! SpaceVim#layers#tools#cpicker#loadeable() abort
|
|||||||
return has('nvim-0.10.0')
|
return has('nvim-0.10.0')
|
||||||
|
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! SpaceVim#layers#tools#cpicker#health() abort
|
||||||
|
|
||||||
|
return 1
|
||||||
|
|
||||||
|
endfunction
|
||||||
|
Loading…
Reference in New Issue
Block a user