骑呗单车免押金需要什么条件 芝麻信用积分多少可
百度 osprey是什么牌子
Language Server Protocol is used between an editor or IDE (such as Vim or NeoVim) and a language server (such as clangd or many others) that provides language features like auto complete, go to definition, find all references etc.
184 questions
0
votes
0
answers
67
views
VTSLS language server looks attached at output of :LspInfo, but it does not function except basic diagnostics
Here is :LspInfo output:
- vtsls (id: 5)
- Version: 0.2.9
- Root directory: ~
- Command: { "vtsls", "--stdio" }
- Settings: {
vtsls = {
tsserver = {
...
0
votes
1
answer
106
views
Double load of lua_ls when using nvim-lspconfig
I am trying to debug a problem I have with the lsp configuration of nvim.
When I open a file in nvim, the lsp lua_ls loads fine and works correctly. If I open a new file, or move to the next file, ...
0
votes
0
answers
40
views
Using Intelephense with Laravel in Neovim, for Laravel modules
So I have a quite specific problem. I've been able to configure intelephense, to work with Laravel and recognize it's magic methods, classes etc. But when it comes to modular Laravel folder structure, ...
0
votes
0
answers
50
views
Single LSP (pyright) for my code and standard library
So, I try to transition to neovim (for 0.11) I have added such config (tried to minimize where it's clear how to do)
init.lua:
require("riad.lazy")
vim.api.nvim_create_autocmd("...
0
votes
1
answer
95
views
Missing import path in autocompletion menu in blink.cmp
Expected Behavior (Screenshot from VSCodium as Example):
Or
Current Behavior (Neovim v0.11+):
Configuration
I'm using blink.cmp for autocompletion:
{
"saghen/blink.cmp",
dependencies = {...
0
votes
1
answer
127
views
LSP ltex_plus custom config never loaded using Mason + LSP Config
I'm trying to configure ltex-ls-plus + ltex-extra, but the ltext config is never parsed and it keeps using the default.
['ltex_plus'] = function(server_name)
config_server(...
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
1
answer
92
views
Why can't I edit Path env through vim.opt.path:append?
I'm trying to add the path of mason's bin to the environment path of Neovim, in its profile. So I don't need to change my OS's environment path every time I'm changing computer.
I tried vim.opt.path:...
0
votes
2
answers
724
views
Neovim: Duplicate LSP clients attached to the buffer
I suddenly started to see pylint warn me about line length though I was within the threshold configured. I checked :LspInfo and found duplicate instances of pylsp attached. One with default/no ...
0
votes
0
answers
69
views
Configure `window/showMessage` in neovim/nvim-lspconfig
I work on a custom LSP. I use neovim/nvim-lspconfig to configure LSP for LazyVim. It all works fine, but I cannot make nvim to display notify on windonw/showMessage messages from LSP.
What I know is ...
1
vote
0
answers
97
views
Disabling linting in pylsp while keeping navigation features
I'm having an issue with python-lsp-server (pylsp) in my Neovim setup. I want to use pylsp only for its navigation features (goto definition, references, etc.) while completely disabling all linting/...
0
votes
0
answers
56
views
Is there a way to maintain autocomplete state when pressing backspace with Neovim LSP?
I currently use coc.nvim, but I was interested in the native Neovim LSP tools. I tried setting it up like this (only relevant parts shown):
-- configure typescript
-- install with `sudo npm install -g ...
1
vote
0
answers
242
views
How do you configure Neovim LSP with completeopt=popup?
I currently use coc.nvim, but I was interested in the native Neovim LSP tools. I tried setting it up like this (only relevant parts shown):
-- configure typescript
-- install with `sudo npm install -g ...
0
votes
0
answers
299
views
Error starting roslyn LSP server - seblyng/roslyn.nvim cmd configuration
I am trying to configure seblyng/roslyn.nvim to work with nvim-lspconfig on the Windows version of Neovim. I have mason, mason-lspconfig and nvim-lspconfig installed using lazy.nvim. Following the ...
0
votes
2
answers
785
views
Correct way to utilize on_attach in the new vim.lsp.config setup in Neovim v0.11
I am looking at trying to utilize the new vim.lsp.config features both in core Neovim v0.11 as well as the latest updates to nvim-lspconfig. I am curious what the proper/intended way of setting up my ...