Xcode Shortcuts seanallen_dev
Edit in Scope Jump to method definition
// Edits multiple instances in scope // Does what it says
cmd + ctrl + e ⌘⌃e cmd + option + click ⌘ ⌥ click
Opening a file in assistant editor Persisting Library
// Opens the clicked file in assistant editor // Library stays open
option + click ⌥ click cmd + option + shift + l ⌘⌥⇧l
Re-indent the whole function Open Media Library
// Re-indents the highlighted function // Opens a media library for faster import
ctrl + i ⌃i cmd + shift + m ⌘⇧m
Auto-documentation Left pane tabs switch
// Provides a documentation template // Cycles through left pane tabs
cmd + option + / ⌘ ⌥/ cmd + 1-9 ⌘ 1-9
Quick method/file search Right pane tabs switch
// Finds a method of a file // Cycles through right pane tabs
cmd + shift + o ⌘ ⇧o cmd + option + 1-6 ⌘ ⌥ 1-6
Window management Multi line editing
// Opens/hides left and right pane // Places a cursor in multiple places
cmd (+option) + 0 ⌘ (+⌥) 0 ctrl + shift + click ⌃ ⇧ click
Jumps to code line Vertical selection
// Jumpts to a specific code line // Drag to select multiple lines but verticaly
cmd + l ⌘l option + drag ⌥ drag
Center cursor Toggle breakpoints
// Centers a cursor in the middle // Toggles breakpoints on and off
ctrl + l ⌃l cmd + y ⌘y
Create Tabs #warning("description")
// ⌘ ⇧ [ or ] to navigate between tabs // Adds a warning to your code. Best used as a reminder.
cmd + t ⌘t #error("description")
// Adds an error to your code.
Assembled by: emin_roblack