Rafał Chłodnicki
Rafał Chłodnicki
Need more information since I don't know how to reproduce that locally. For a start, can you provide the logs (stderr) that the server produces on start?
You could try enabling `disableAutomaticTypingAcquisition` (see https://github.com/typescript-language-server/typescript-language-server#initializationoptions). If the problem goes away then we would know which process triggers the console exactly. The only related thing that has changed (I...
For reference this is the place where Typescript starts that process: https://github.com/microsoft/TypeScript/blob/e2c89af335e98003fa3a1cf8ec2acbd41add8a68/src/tsserver/nodeServer.ts#L510-L510 `child_process.fork` has a `windowsHide` option to prevent the console from popping up on Windows so TypesScript could use...
Right, missed that. BTW. What is the full command that you are running to that this server?
I don't really know why does this happen for you. Even though I've provided a workaround, I think we could still try to figure out what and why exactly happens...
@philer Support for workspace folders wouldn't affect your case. All that the support for workspace folders would achieve is it would ensure that only one process is started instead of...
One could argue that it's not the responsibility of this server to format the documentation comments and I'm fairly sure that tssever has no capability to do that. Many text...
> What other editor than VSCode do you have in mind that support proper comments formatting? SublimeText, which is my primary text editor of choice. > I hope you realize...
Personally I think it's very unlikely that this will get implemented but will keep it as a feature request.
Actually my bad, the tsserver supports this feature. But not in the case requested in the first comment. It only sets up the following trigger characters: `;`, `}`, `\n` and...