vscode-cmake-tools
vscode-cmake-tools copied to clipboard
add option to reveal output panel only when an error occurs
Brief Issue Summary
- when editing
CMakeLists.txt
, the extension automatically reconfigures cmake - it also forcibly switches panel into output
- it would be great to have an option to disable such behavior
CMake Tools Diagnostics
No response
Debug Log
No response
Additional Information
before editing
CMakeLists.txt
, right panel on terminal
after editing
CMakeLists.txt
, right panel on output
The option exists. Try using "cmake.revealLog": "never"
and let us know if that provides the functionality you are looking for. Thanks!
Related: #1675
"cmake.revealLog": "never"
Thank you, this option worked. However it lacks a description, would be great to have one.
It would be nice if the log was only revealed if exit code != 0
It would be nice if the log was only revealed if exit code != 0
This is great if we have option "reveal on error". Or at least we can show build status (success/failed) on status bar or notification
How about use "cmake.configureOnEdit": false
.
How about use
"cmake.configureOnEdit": false
.
Does not solve the problem, because CMake should still be configured. We just don't want to have to watch the configuration every time (unless an error occurs).