1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

use plaintext for pyright hover request

see my comment here for the details: https://www.reddit.com/r/neovim/comments/1gdv1rc/comment/lvt9nlm/
This commit is contained in:
jdhao 2024-11-07 21:51:31 +01:00
parent 1141a18c5f
commit 8dfae271d0

View File

@ -136,7 +136,11 @@ if utils.executable('pyright') then
tagSupport = {
valueSet = { 2 }
}
}
},
hover = {
contentFormat = { "plaintext" },
dynamicRegistration = true,
},
}
}
local merged_capability = vim.tbl_deep_extend("force", capabilities, new_capability)