diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-05-29 12:06:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-29 12:06:58 -0700 |
commit | cabf8ab26b21c295355b8024ad6533fe0a675c5e (patch) | |
tree | cefcf3e5c94b987c6a85ef047536168a3553858e /runtime/syntax | |
parent | a7205e2b70c1d36d9fdf46138357208306c714c6 (diff) | |
parent | 64da499ac25bd833c57e0850e31affd22294049e (diff) | |
download | rneovim-cabf8ab26b21c295355b8024ad6533fe0a675c5e.tar.gz rneovim-cabf8ab26b21c295355b8024ad6533fe0a675c5e.tar.bz2 rneovim-cabf8ab26b21c295355b8024ad6533fe0a675c5e.zip |
Merge pull request #14649 from folke/lsp_float_refactor
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 |