1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:40:06 +08:00

Fix markdown preview in gvim (#2809)

* Add vim-node-rpc

close #2800

* Fix help section

merge and close #2801
This commit is contained in:
Wang Shidong 2019-05-09 23:19:29 +08:00 committed by GitHub
parent 1f84aa960c
commit 5dd77fd6db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 12 deletions

View File

@ -106,7 +106,7 @@ let g:spacevim_enable_bepo_layout = 0
let g:spacevim_max_column = 120
""
" @section max_column, options-home_files_number
" @section home_files_number, options-home_files_number
" @parentsection options
" Change the list number of files for SpaceVim home. Default is 6.
" >

View File

@ -30,6 +30,9 @@ function! SpaceVim#layers#lang#markdown#plugins() abort
\ 'depends': 'open-browser.vim',
\ 'build' : 'cd app & yarn install' }])
call add(plugins, ['lvht/tagbar-markdown',{'merged' : 0}])
if !has('nvim')
call add(plugins, ['neoclide/vim-node-rpc', {'merged': 0, 'build' : 'yarn install'}])
endif
return plugins
endfunction

View File

@ -31,9 +31,9 @@ CONTENTS *SpaceVim-contents*
11. enable_ycm.............................|SpaceVim-options-enable_ycm|
12. error_symbol.........................|SpaceVim-options-error_symbol|
13. guifont...................................|SpaceVim-options-guifont|
14. lint_on_the_fly...................|SpaceVim-options-lint_on_the_fly|
15. max_column.............................|SpaceVim-options-max_column|
16. max_column......................|SpaceVim-options-home_files_number|
14. home_files_number...............|SpaceVim-options-home_files_number|
15. lint_on_the_fly...................|SpaceVim-options-lint_on_the_fly|
16. max_column.............................|SpaceVim-options-max_column|
17. plugin_bundle_dir...............|SpaceVim-options-plugin_bundle_dir|
18. plugin_manager_processes.|SpaceVim-options-plugin_manager_processes|
19. realtime_leader_guide.......|SpaceVim-options-realtime_leader_guide|
@ -225,6 +225,14 @@ Set the guifont of SpaceVim. Default is empty.
guifont = "SauceCodePro Nerd Font Mono:h11"
<
==============================================================================
HOME_FILES_NUMBER *SpaceVim-options-home_files_number*
Change the list number of files for SpaceVim home. Default is 6.
>
home_files_number = 6
<
==============================================================================
LINT_ON_THE_FLY *SpaceVim-options-lint_on_the_fly*
@ -241,14 +249,6 @@ Change the max number of columns for SpaceVim. Default is 120.
max_column = 120
<
==============================================================================
MAX_COLUMN *SpaceVim-options-home_files_number*
Change the list number of files for SpaceVim home. Default is 6.
>
home_files_number = 6
<
==============================================================================
PLUGIN_BUNDLE_DIR *SpaceVim-options-plugin_bundle_dir*