Sublime Text is a sophisticated cross-platform text editor built for code, markup, and prose, known for its speed, elegant interface, and powerful features. Released in 2008, it pioneered features like multiple selections, Goto Anything, and a minimap that have since become standard in modern editors. Build 4200 (stable, May 2025) added sidebar placement options, interactive build systems, and native TOML/Zsh syntax; the dev channel (build 4205) upgraded the plugin Python runtime to 3.14. While VS Code and Zed have surged in popularity, Sublime Text remains the choice of developers who prioritize raw performance, minimal resource usage, and a distraction-free workflow — it starts instantly, handles massive files without slowdown, and stays responsive where Electron-based editors struggle.
What This Cheat Sheet Covers
This topic spans 23 focused tables and 247 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
Table 1: Navigation and Quick Access
| Command | Example | Description |
|---|---|---|
Ctrl+P → type myfile.py | • Opens fuzzy file search across the project • type a filename or path fragment to jump to any file. | |
Ctrl+Shift+P | Searchable list of all commands, settings, and plugin actions — access everything without memorizing shortcuts. | |
Ctrl+R or Ctrl+P → | • Lists all symbols (functions, classes, methods) in the current file • navigate with arrows or fuzzy search. | |
Ctrl+Shift+R | • Searches symbols across all project files • useful for finding definitions in large codebases. | |
Ctrl+G → 145 or Ctrl+P → :145 | • Jumps to a specific line number • : prefix works inside Goto Anything. | |
Ctrl+; | • Jumps to any word in the current file using fuzzy search • faster than scrolling or find for single-file navigation. |