Open
0 of 1 issue completedDescription
Field | Description |
---|---|
Option | lsp.server.omnisharp |
Nixpkgs | unstable |
Home Manager | unstable |
- I have read the FAQ and my bug is not listed there.
Description
This one is a weird one. Consider the following:
omnisharp = {
enable = true;
settings = {
roslynExtensionOptions = {
enableAnalyzerSupport = true;
enableImportCompletion = true;
};
};
};
This enables omnisharp and it runs fine...except for the fact that it doesn't apply the settings set in rosleynExtensionOptions
?? What's weirder is that this will also run without any errors:
omnisharp = {
enable = true;
settings = {
roslynExtensionOptions = {
enableAnalyzerSupport = true;
enableImportCompletion = true;
foobar = true;
};
};
};
Help would be appreciated