The C# LSP server (Omnisharp) contains an endpoint for tests discovery (o#/v2/discover_tests), and it contains an underscore. As far as I can see, all underscores are replaced to slashes, so I can't do something like:
local err, result = client.request['o#_v2_discover_tests'](lsp_request)
Is there a way to instruct the client to not replace the last underscore?
The C# LSP server (Omnisharp) contains an endpoint for tests discovery (
o#/v2/discover_tests
), and it contains an underscore. As far as I can see, all underscores are replaced to slashes, so I can't do something like:Is there a way to instruct the client to not replace the last underscore?