ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Toggle​Debug​Mode

by gerardroche ST3

Toggle Sublime Text loggers.

Labels debug

Details

Installs

  • Total 128
  • Win 72
  • Mac 41
  • Linux 15
Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23
Windows 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 1 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 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 1 1 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) or Cmd+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

  1. Open Sublime Text and press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS).
  2. Type Package Control: Install Package and hit Enter.
  3. Search for ToggleDebugMode and select it to install.

Option 2: Git Clone

  1. 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
  2. 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 Logging to troubleshoot key bindings.
  • Enable Result Regex Logging to refine build system regex patterns.
  • Activate Control Tree Logging and click with Ctrl+Alt/Cmd+Alt to inspect UI elements.

License

This plugin is released under the GPL-3.0-or-later License.


Happy debugging!