diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-03-15 10:28:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 10:28:05 -0700 |
commit | 054eb31dc797f9e9addd680a547215cd058b486e (patch) | |
tree | fb6bab3e933acee4521c0847ea53e91671dacc09 /runtime/ftplugin | |
parent | e8a0ff001f1df568077b046237fcbf07568385f8 (diff) | |
parent | 6b7cde3dd021edcdd835dee3b3933021cadd491b (diff) | |
download | rneovim-054eb31dc797f9e9addd680a547215cd058b486e.tar.gz rneovim-054eb31dc797f9e9addd680a547215cd058b486e.tar.bz2 rneovim-054eb31dc797f9e9addd680a547215cd058b486e.zip |
Merge pull request #14098 from mjlbach/fix_highlighting_lsp_markdown
lsp: fix highlighting for lsp markdown code blocks
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/lsp_markdown.vim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/runtime/ftplugin/lsp_markdown.vim b/runtime/ftplugin/lsp_markdown.vim deleted file mode 100644 index d3244fc955..0000000000 --- a/runtime/ftplugin/lsp_markdown.vim +++ /dev/null @@ -1,11 +0,0 @@ -" Vim filetype plugin -" Language: lsp_markdown -" Maintainer: Michael Lingelbach <m.j.lbach@gmail.com> -" Last Change: 2021 Mar 09 - -if exists("b:did_ftplugin") - finish -endif - -runtime! ftplugin/markdown.vim -" vim:set sw=2: |