Summary: | Cannot override / add to lsp settings in .kateproject | ||
---|---|---|---|
Product: | [Applications] kate | Reporter: | Robert Roland <rob> |
Component: | general | Assignee: | KWrite Developers <kwrite-bugs-null> |
Status: | RESOLVED NOT A BUG | ||
Severity: | normal | CC: | gl.ivanovsky |
Priority: | NOR | ||
Version: | 21.12.2 | ||
Target Milestone: | --- | ||
Platform: | Fedora RPMs | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Robert Roland
2022-05-23 01:33:40 UTC
Marking as resolved - it's more a matter of me not knowing the proper configuration. In .kateproject: ``` { "name": "my project", "lspclient": { "servers": { "ada": { "settings": { "ada": { "projectFile": "plaid.gpr", "enableIndexing": true } } } } } } ``` It was missing the "servers" key And in my user LSP settings, in case someone else wants to use the Ada language server: ``` { "servers": { "ada": { "command": ["ada_language_server"], "rootIndicationFilePatterns": ["*.gpr"], "url": "https://github.com/AdaCore/ada_language_server", "highlightingModeRegex": "^Ada$" } } } ``` note the addition of rootIndicationFilePatterns |