You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve consistency and usability of build panel handling (#1657)
# Description
This PR makes three small but related improvements around the LaTeXTools build panel:
* **Expose "Show build panel" in the Command Palette**
* Adds a new command palette entry:
```
makefileCopy codeLaTeXTools: Show build panel
```
* This provides a discoverable way for users to reopen the build panel manually (useful when `"hide_build_panel"` is set to `"always"` or `"never"`).
* **Clarify and correct documentation of `hide_build_panel`**
* The previous comments in `LaTeXTools.sublime-settings` were inconsistent:
* The code fallback was `"no_warnings"`.
* The defaults file set `"no_badboxes"`.
* The comments claimed `"never"` was the default.
* The docs are now clearer, consistent, and explicitly state the true default.
* **Align code fallback with shipped defaults**
* In `make_pdf.py`, the fallback for `get_setting("hide_build_panel", ...)` is updated from `"no_warnings"` → `"no_badboxes"`.
* This ensures consistency between the source code and the default settings file.
---
# Benefits
* Users get an easy, discoverable way to open the build panel on demand.
* Documentation is clearer and avoids contradictory information about defaults.
* Settings behavior is more consistent between code and defaults, reducing confusion for both users and contributors.
0 commit comments