p00f / clangd_extensions.nvim

Clangd's off-spec features for neovim's LSP client. Use https://sr.ht/~p00f/clangd_extensions.nvim instead
MIT License
485 stars 18 forks source link

Exclude file from analysis #52

Closed sainteckes closed 7 months ago

sainteckes commented 7 months ago

Is there a simple way of excluding a cpp file from analysis in the plugin or does this need to be done on the clangd level directly?

p00f commented 7 months ago

The latter - this plugin is simply for extra features not supported by neovim itself

p00f commented 7 months ago

fwiw I don't know of any way to do that, other than maybe detaching using a bufenter autocommand (which still might not exclude it from "analysis")

sainteckes commented 7 months ago

Thanks I will have a look!