Shortcuts I use daily to work faster with Python, network automation, device configuration and code editing.
This is my personal collection of Sublime Text shortcuts, accumulated over the years working with Python, Ansible, network configurations and automation scripts.
They were organized to make daily life easier for those who work with code and infrastructure.
| Shortcut | What it does |
|---|---|
| CTRL + X | Cut line or selection |
| CTRL + C | Copy |
| CTRL + V | Paste |
| CTRL + D | Duplicate line (loose cursor) or word (selected) |
| CTRL + Z | Undo |
| CTRL + SHIFT + Z | Redo (restore what was undone) |
| SHIFT + DELETE | Delete entire line (no selection needed) |
| Shortcut | What it does |
|---|---|
| CTRL + F | Open search in current file |
| ALT + F3 (ou FN+ALT+F3) | Select all occurrences of the word under cursor |
| ALT + ENTER | Create cursors at all occurrences found in search |
| CTRL + Click Esquerdo | Create additional cursors at specific points (or open files in Side Bar) |
| CTRL + ALT + Setas ↑/↓ | Create cursor in line above/below |
| Scroll Lock (botão do meio) | Vertical block selection (column mode) |
| Shortcut | What it does |
|---|---|
| SHIFT + Setas ←/→ | Select character by character |
| CTRL + SHIFT + Setas ←/→ | Select whole word (jumps words) |
| CTRL + SHIFT + Setas ↑/↓ | Move line (or block) up/down |
| Shortcut | What it does |
|---|---|
| CTRL + K + B | Toggle Side Bar visibility |
| SHIFT + ALT + 1 | Single group (back to single column) |
| SHIFT + ALT + 2 | Split into 2 side groups (columns) |
| SHIFT + ALT + 3 | Split into 3 side groups |
| SHIFT + ALT + 4 | Split into 4 side groups |
| Shortcut | What it does |
|---|---|
| CTRL + K + U | Transform selection to UPPERCASE |
| CTRL + K + L | Transform selection to lowercase |
| CTRL + Scroll (frente/trás) | Zoom in / Zoom out (increase/decrease font size) |
| Tip | Description |
|---|---|
| TAB | Auto-complete words already in the text (use arrows to choose) |
| Espaço vs. Tab | Space = single character; Tab = cell advance (useful for tabular data) |
| CTRL + K + B + Click | With Side Bar open, click files with CTRL to open in new tab |