# Sublime Text

> Sublime Text fast editor with multiple cursors. Use for quick editing.

- Skill: `g1joshi/sublime-text` (Agent Skill)
- Install (CLI): `npx skillmds@latest add g1joshi/sublime-text`
- Raw SKILL.md: https://api.skillmd.com/api/skills/g1joshi/sublime-text/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: G1Joshi (https://skillmd.com/u/g1joshi)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/g1joshi/sublime-text

---


# Sublime Text 4

Sublime Text is legendary for its speed and "Goto Anything" (`Cmd+P`) interface. Even in 2025, it remains the fastest GUI editor for opening massive files.

## When to Use

- **Large Files**: Opening a 500MB SQL dump? VS Code chokes. Sublime opens it instantly.
- **Regex**: Multi-cursor + Regex find/replace workflow is unparalleled.
- **Minimalism**: Distraction-free coding without 50 sidebars.

## Core Concepts

### Package Control

The extension manager. Must be installed first.

### Computed Layout

Mini-map (on the right) allows visual navigation of code shape.

### Projects

`sublime-project` files allow saving workspace state (open tabs, layout).

## Best Practices (2025)

**Do**:

- **Use LSP**: The `LSP` package brings VS Code-like intelligence to Sublime.
- **Buy a License**: Support indie developers. It's worth it.
- **Keep it Light**: Don't turn it into an IDE. Use it for its speed.

**Don't**:

- **Don't ignore startup time**: Keep plugins to a minimum.

## References

- [Sublime Text Documentation](https://www.sublimetext.com/docs/)

