mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-24 18:52:22 +08:00
commit
0d25e2503d
@ -63,6 +63,8 @@ curl -sLf https://spacevim.org/install.sh | bash -s -- -h
|
||||
- **Beautiful GUI:** you'll love the awesome UI and its useful features.
|
||||
- **Mnemonic key bindings:** all key bindings have mnemonic prefixes.
|
||||

|
||||
- **Describe key bindings:** use <kbd>SPC h d k</kbd> to describe key bindings.
|
||||

|
||||
- **Lazy load plugins:** Lazy-load 90% of plugins with [dein.vim](https://github.com/Shougo/dein.vim)
|
||||

|
||||
- **Neovim centric:** Dark powered mode of SpaceVim
|
||||
|
@ -376,7 +376,7 @@ let g:spacevim_enable_vimfiler_gitstatus = 0
|
||||
" Enable/Disable filetypeicon column in vimfiler buffer, default is 0.
|
||||
let g:spacevim_enable_vimfiler_filetypeicon = 0
|
||||
let g:spacevim_smartcloseignorewin = ['__Tagbar__' , 'vimfiler:default']
|
||||
let g:spacevim_smartcloseignoreft = ['help', 'tagbar', 'vimfiler', 'SpaceVimRunner', 'SpaceVimQuickFix']
|
||||
let g:spacevim_smartcloseignoreft = ['help', 'tagbar', 'vimfiler', 'SpaceVimRunner', 'SpaceVimQuickFix', 'HelpDescribe']
|
||||
let g:spacevim_altmoveignoreft = ['Tagbar' , 'vimfiler']
|
||||
let g:spacevim_enable_javacomplete2_py = 0
|
||||
let g:spacevim_src_root = 'E:\sources\'
|
||||
|
@ -66,4 +66,6 @@ function! s:open_describe_buffer(desc) abort
|
||||
if lines < winheight(0)
|
||||
exe 'resize ' . lines
|
||||
endif
|
||||
setlocal nofoldenable
|
||||
nnoremap <buffer><silent> q :bd<cr>
|
||||
endfunction
|
||||
|
@ -3,6 +3,8 @@ if exists("b:current_syntax")
|
||||
endif
|
||||
let b:current_syntax = "HelpDescribe"
|
||||
syntax case ignore
|
||||
syn match FileName /[^:]*:\d\+:/
|
||||
syn match FileName /\(Definition:\ \)\@<=.*/
|
||||
syn match KeyBindings /\[.*\]/
|
||||
|
||||
hi def link FileName Comment
|
||||
hi def link KeyBindings String
|
||||
|
Loading…
x
Reference in New Issue
Block a user