| 174 | } |
| 175 | |
| 176 | void LanguageServer::createClient() |
| 177 | { |
| 178 | delete lsp; |
| 179 | auto program = SettingsManager::get("LSP/Path " + language).toString(); |
| 180 | auto args = QProcess::splitCommand(SettingsManager::get("LSP/Args " + language).toString().trimmed()); |
| 181 | lsp = new LSPClient(program, args); |
| 182 | } |
| 183 | |
| 184 | void LanguageServer::performConnection() |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected