[PATCH] D55052: Fix junk output in clangd vscode plugin
James Findley via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 29 06:09:37 PST 2018
jfindley marked an inline comment as done.
jfindley added inline comments.
================
Comment at: clangd/clients/clangd-vscode/src/extension.ts:59
+ // Avoid lots of junk in output
+ revealOutputChannelOn: vscodelc.RevealOutputChannelOn.Never
};
----------------
ioeric wrote:
> Does this mean that clangd's output will never reach vscode? Is there a way to see the output with this set? I think there are cases where the output would be useful for users (e.g. to check status).
It still reaches vscode, it just tells vscode not to automatically open the output window any time you do anything. You can still manually open the output window to see clangd info if you want to.
Repository:
rCTE Clang Tools Extra
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55052/new/
https://reviews.llvm.org/D55052
More information about the cfe-commits
mailing list