With Foundry I want to make LSP management much easier than it currently is in Builder.
We have the foundry lsp run python3
command where python3
can be replaced with any language for which there is an installed LSP plugin. This will start an LSP using all the abstractions (including cross-container execution) and provide it via stdin
/stdout
.
But what happens when you have a half-dozen language servers for Python with new ones added every week? There is a simple builtin tool now.
Keep in mind the language identifiers should match GtkSourceView language identifiers.
# Make clangd the preferred LSP for C foundry lsp prefer clangd c # Make sourcekit-lsp preferred LSP for C++ foundry lsp prefer sourcekit-lsp cpp # Make ruff the preferred LSP for Python3 foundry lsp prefer ruff python3
If there is a clear LSP that your project should be using by all contributors, add --project
and it will update the value in the projects settings.