// PRODUCTIVITY • EDITOR

Ozumaru
Sublime Text

Collection of Shortcuts and Settings for Network Engineers

Shortcuts I use daily to work faster with Python, network automation, device configuration and code editing.

My Essential Shortcuts

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.

📋 Basic Editing

Shortcut What it does
CTRL + XCut line or selection
CTRL + CCopy
CTRL + VPaste
CTRL + DDuplicate line (loose cursor) or word (selected)
CTRL + ZUndo
CTRL + SHIFT + ZRedo (restore what was undone)
SHIFT + DELETEDelete entire line (no selection needed)

🔍 Search, Multi-Selection and Cursors

Shortcut What it does
CTRL + FOpen search in current file
ALT + F3 (ou FN+ALT+F3)Select all occurrences of the word under cursor
ALT + ENTERCreate cursors at all occurrences found in search
CTRL + Click EsquerdoCreate 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)

🎯 Advanced Selection and Navigation

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

📁 Side Bar and Groups

Shortcut What it does
CTRL + K + BToggle Side Bar visibility
SHIFT + ALT + 1Single group (back to single column)
SHIFT + ALT + 2Split into 2 side groups (columns)
SHIFT + ALT + 3Split into 3 side groups
SHIFT + ALT + 4Split into 4 side groups

🔠 Formatting and Zoom

Shortcut What it does
CTRL + K + UTransform selection to UPPERCASE
CTRL + K + LTransform selection to lowercase
CTRL + Scroll (frente/trás)Zoom in / Zoom out (increase/decrease font size)

💡 Productivity Tips

Tip Description
TABAuto-complete words already in the text (use arrows to choose)
Espaço vs. TabSpace = single character; Tab = cell advance (useful for tabular data)
CTRL + K + B + ClickWith Side Bar open, click files with CTRL to open in new tab
VIEW FULL LIST ON GITHUB →