降钙素原偏高说明什么
Tagged with lsp syntax-highlighting
6 questions
0
votes
0
answers
32
views
How to ignore missing modules for pyright LSP in nvim-lspconfig?
I have this right now,
local servers = {
pyright = vim.tbl_deep_extend('force', default_settings, {
settings = {
python = {
analysis = {
...
1
vote
0
answers
69
views
Gopls is not providing highlight tokens for constants or packages/namespaces
For example, in the code below the constant "myUrl" will be highlighted as a constant when it is declared (:Inspect = @constant) but not when it is used in main() (:Inspect = @variable). My ...
1
vote
1
answer
64
views
Neovim syntax highlighting from STDIN
I am trying to get Neovim to auto-detect the filetype/syntax when piping text into nvim.
Example:
docker inspect 1234 | nvim
Outputs JSON as follows:
[
{
"Id": "...
1
vote
1
answer
2k
views
How to disable lsp server syntax highlighting?
I found out that my lsp servers is somehow adding this ugly highlighting to my code (this happened after I updated my Homebrew for some reason), here are before and after pics:
Here is my lsp server ...
6
votes
1
answer
3k
views
How to disable semantic highlighting for certain filetypes only?
Using Neovim's native LSP interface, I noticed that semantic highlighting provided by LSP makes things worse for certain languages, so I want to disable it based on filetype.
I know about possibility ...
0
votes
1
answer
340
views
What is the term of feature used by on-the-fly checkers?
Here are two screenshots, with vim and neovim, both with configured language server protocol and showing same file:
Neovim:
Vim:
I want to configure neovim to have same style as vim -- I do not like ...