Skip to content

[BUG] lsp.servers.omnisharp.settings won't apply any settings #3271

Open
0 of 1 issue completed
Open
@Houdiee

Description

@Houdiee
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

Sub-issues

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions