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/lua/vim/lsp/util.lua | |
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/lua/vim/lsp/util.lua')
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index 918b77e9f9..4b528d7090 100644 --- a/runtime/lua/vim/lsp/util.lua +++ b/runtime/lua/vim/lsp/util.lua @@ -1036,7 +1036,6 @@ function M.fancy_floating_markdown(contents, opts) api.nvim_win_set_option(winnr, 'concealcursor', 'n') vim.cmd("ownsyntax lsp_markdown") - vim.cmd("set filetype=lsp_markdown") local idx = 1 --@private local function apply_syntax_to_region(ft, start, finish) |