diff options
author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2021-05-26 23:47:53 +0200 |
---|---|---|
committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2021-05-29 13:42:15 +0200 |
commit | 64da499ac25bd833c57e0850e31affd22294049e (patch) | |
tree | ec999ccf318043a0301ac8b5cc67880a55ff4aeb /runtime/syntax | |
parent | 192f89ea1bdb86e8d12a9940872f92f0fc88b300 (diff) | |
download | rneovim-64da499ac25bd833c57e0850e31affd22294049e.tar.gz rneovim-64da499ac25bd833c57e0850e31affd22294049e.tar.bz2 rneovim-64da499ac25bd833c57e0850e31affd22294049e.zip |
refactor(lsp): consolidate the different floating window methods into open_floating_preview
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/lsp_markdown.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/syntax/lsp_markdown.vim b/runtime/syntax/lsp_markdown.vim index d5c1414f01..d9b50be54c 100644 --- a/runtime/syntax/lsp_markdown.vim +++ b/runtime/syntax/lsp_markdown.vim @@ -4,7 +4,9 @@ " URL: http://neovim.io " Remark: Uses markdown syntax file -runtime! syntax/markdown.vim +" always source the system included markdown instead of any other installed +" markdown.vim syntax files +execute 'source' expand('<sfile>:p:h') .. '/markdown.vim' syn cluster mkdNonListItem add=mkdEscape,mkdNbsp |