ToggleDebugMode
Toggle Sublime Text loggers.
Labels debug
Details
Installs
- Total 143
- Win 82
- Mac 45
- Linux 16
| Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Debug Logging
Boost your Sublime Text debugging with this plugin. Adds commands to enable or disable editor logging features from the Command Palette.
Features
- Command Logging: Logs executed commands to the console.
- Input Logging: Captures all key presses—perfect for identifying key names.
- FPS Logging: Tracks rendering timings, like frames per second.
- Result Regex Logging: Debugs
"file_regex"and"line_regex"in build systems. - Indexing Logging: Prints indexing logs to the console.
- Build System Logging: Monitors build system activity.
- Control Tree Logging: Logs the control tree under the mouse when clicking with
Ctrl+Alt(Windows/Linux) orCmd+Alt(macOS).
For detailed API info, see the Sublime Text API Documentation.
Installation
Choose your preferred method to install the ToggleDebugMode plugin:
Option 1: Package Control
- Open Sublime Text and press
Ctrl+Shift+P(Windows/Linux) orCmd+Shift+P(macOS). - Type
Package Control: Install Packageand hitEnter. - Search for
ToggleDebugModeand select it to install.
Option 2: Git Clone
- Open a terminal and navigate to your Sublime Text Packages folder:
- Windows:
%APPDATA%\Sublime Text\Packages - macOS:
~/Library/Application Support/Sublime Text/Packages - Linux:
~/.config/sublime-text/Packages
- Windows:
- Run:
git clone https://github.com/gerardroche/sublime-toggle-debug-mode.git ToggleDebugMode
Available Commands
Access these commands via the Command Palette (Ctrl+Shift+P or Cmd+Shift+P) to customize your debugging:
| Command | Description |
|---|---|
ToggleDebugMode: Enable Logging |
Activates all logging features |
ToggleDebugMode: Disable Logging |
Deactivates all logging features |
ToggleDebugMode: Toggle Command Logging |
Toggles command logging |
ToggleDebugMode: Toggle Input Logging |
Toggles key press logging |
ToggleDebugMode: Toggle FPS Logging |
Toggles FPS logging |
ToggleDebugMode: Toggle Result Regex Logging |
Toggles regex logging |
ToggleDebugMode: Toggle Index Logging |
Toggles indexing logging |
ToggleDebugMode: Toggle Build System Logging |
Toggles build system logging |
ToggleDebugMode: Toggle Control Tree Logging |
Toggles control tree logging |
Usage Tips
- Use
Input Loggingto troubleshoot key bindings. - Enable
Result Regex Loggingto refine build system regex patterns. - Activate
Control Tree Loggingand click withCtrl+Alt/Cmd+Altto inspect UI elements.
License
This plugin is released under the GPL-3.0-or-later License.
Happy debugging!