Skip to content

Latest commit

 

History

History
311 lines (185 loc) · 4.95 KB

File metadata and controls

311 lines (185 loc) · 4.95 KB

Shortcuts Cheatsheet


🔹 OS

Show Workspace

  • Shortcut: Super
  • Notes: Opens workspace overview.

Maximize Window

  • Shortcut: Super+M
  • Notes: Maximizes the focused window.

Fullscreen

  • Shortcut: F11
  • Notes: Toggle fullscreen mode.

Move Window Between Screens

  • Shortcut: Shift+Super+Left/Right
  • Notes: Moves window to adjacent monitor.

Snap Window to Screen Side

  • Shortcut: Super+Left/Right
  • Notes: Dock window left or right.

Switch Apps

  • Shortcut: Alt+Tab
  • Notes: Cycles active applications.

Workspace Selector

  • Shortcut: Super+(Number)
  • Notes: Jump to specific workspace.

Back to Desktop

  • Shortcut: Super+D
  • Notes: Minimize all windows.

Open Browser

  • Shortcut: Super+B
  • Notes: Launch default browser.

Open Terminal

  • Shortcut: Super+T
  • Notes: Launch default terminal.

Navigate Tabs

  • Shortcut: Alt+(Number)
  • Notes: Switch between tabs.

🔹 Kitty

Open New Pane

  • Shortcut: Ctrl+E
  • Notes: Splits terminal horizontally.

Navigate Panes

  • Shortcut: Ctrl+{ / Ctrl+}
  • Notes: Cycle between panes.

Close Pane / Tab

  • Shortcut: Ctrl+W
  • Notes: Closes current pane or tab.

Open New Tab

  • Shortcut: Ctrl+Shift+T
  • Notes: Creates a new tab.

🔹 VS Code

Zen Mode

  • Shortcut: Ctrl+Alt+K
  • Notes: Focus mode without sidebars.

Settings

  • Shortcut: Ctrl+,
  • Notes: Opens settings.

Keyboard Shortcuts

  • Shortcut: Ctrl+.
  • Notes: Opens shortcuts.

Copy Line Up/Down

  • Shortcut: Ctrl+K / Ctrl+J
  • Notes: Duplicate line above or below.

Move Line Up/Down

  • Shortcut: Alt+K / Alt+J
  • Notes: Move current line.

Delete Entire Line

  • Shortcut: Ctrl+Shift+D
  • Notes: Removes line completely.

Copy

  • Shortcut: Ctrl+C
  • Notes: Copy line or selection.

Paste

  • Shortcut: Ctrl+V
  • Notes: Paste line or selection.

Multi-line Cursor

  • Shortcut: Ctrl+Shift+Up/Down
  • Notes: Add cursors.

Command Palette

  • Shortcut: Ctrl+Shift+P
  • Notes: Run any command.

Toggle Type Hints

  • Shortcut: Ctrl+Alt+H
  • Notes: Show/hide inlay hints.

Open Left Navigation

  • Shortcut: Ctrl+N
  • Notes: Opens Explorer.

Quick Open Files

  • Shortcut: Ctrl+P
  • Notes: Fuzzy file search.

Open New Pane

  • Shortcut: Ctrl+E
  • Notes: Split editor side by side.

Navigate Panes

  • Shortcut: Ctrl+{ / Ctrl+}
  • Notes: Move between panes.

Close Pane / Tab

  • Shortcut: Ctrl+W
  • Notes: Close current editor.

🔹 VS Code Vim (Visual / Insert)

Enter Select Mode

  • Shortcut: v
  • Notes: Select text by motion.

Enter Visual Mode from Insert

  • Shortcut: Esc
  • Notes: Switch back to Normal/Visual mode.

Visual Line Mode

  • Shortcut: Shift+V
  • Notes: Select entire line.

Open New Line (Below/Above)

  • Shortcut: o / Shift+O
  • Notes: Insert new line.

Insert Mode

  • Shortcut: i
  • Notes: Insert before cursor.

Append Mode

  • Shortcut: a
  • Notes: Insert after cursor.

Append at End of Line

  • Shortcut: Shift+A
  • Notes: Insert at line end.

Insert at Line Start

  • Shortcut: Shift+I
  • Notes: Insert at beginning.

Yank Line

  • Shortcut: yy
  • Notes: Copy line.

Delete and Yank Line

  • Shortcut: dd
  • Notes: Cut line.

Change Inner Word

  • Shortcut: ciw
  • Notes: Replace current word.

Change Inside Brackets

  • Shortcut: ci{ / ci(
  • Notes: Replace contents inside braces.

Change All Word

  • Shortcut: caw
  • Notes: Replace entire word incl. space.

Change Entire Line

  • Shortcut: Shift+S
  • Notes: Delete and enter insert mode.

Substitute Character

  • Shortcut: s
  • Notes: Replace current character.

🔹 VS Code Vim (Navigation)

Cursor to First Error

  • Shortcut: f8
  • Notes: Jump to the first error

Top of File

  • Shortcut: Shift+G
  • Notes: Jump to end of file.

Bottom of File

  • Shortcut: gg
  • Notes: Jump to start of file.

Navigate Blank Lines

  • Shortcut: Shift+{ / Shift+}
  • Notes: Move up/down paragraph or blank space.

Cursor Left

  • Shortcut: h
  • Notes: Move left.

Cursor Down

  • Shortcut: j
  • Notes: Move down.

Cursor Up

  • Shortcut: k
  • Notes: Move up.

Cursor Right

  • Shortcut: l
  • Notes: Move right.

Next Word

  • Shortcut: w
  • Notes: Jump to start of next word.

Previous Word

  • Shortcut: b
  • Notes: Jump back a word.

Middle of Screen

  • Shortcut: Shift+M
  • Notes: Center cursor.

Page Up / Down

  • Shortcut: Ctrl+B / Ctrl+F
  • Notes: Backward or forward full page.