Obsidian Power Tips

Get more out of Obsidian with these productivity features.


Essential Keyboard Shortcuts

ActionShortcut
Quick Switcher (find any page)Ctrl+O
Global SearchCtrl+Shift+F
Search in current fileCtrl+F
Toggle Edit/PreviewCtrl+E
Open Graph ViewCtrl+G
Open Command PaletteCtrl+P
Create new noteCtrl+N
Open link in new paneCtrl+Click
Go backCtrl+Alt+←
Go forwardCtrl+Alt+→

The Quick Switcher (Ctrl+O)

This is your best friend. Type any part of a filename to jump directly there.

Tips:

  • Type term to find terminology.md
  • Type qual to find quality.md (search for “quality”)
  • Use arrows to select, Enter to open

Graph View (Ctrl+G)

Visual map of how pages connect.

Local Graph

  1. Open any page
  2. Click the “Open local graph” button in the right sidebar
  3. See only connections to/from that page

Global Graph

  1. Press Ctrl+G
  2. See all pages and connections
  3. Click any node to open that page

Graph Filters

In the graph view settings (gear icon):

  • Filter by tags
  • Adjust link distance
  • Change node colors

See every page that links TO the current page.

  1. Open right sidebar (click the icon or drag from edge)
  2. Look for “Backlinks” section
  3. Click any backlink to navigate there

Why it matters: Find related content you might have forgotten about.


Split Panes

Work with multiple pages side-by-side.

  • Ctrl+Click a link to open in new pane
  • Drag pane headers to rearrange
  • Right-click header → “Open linked view” to link two panes

Templates (Optional)

  1. Create a templates/ folder
  2. Add template files (e.g., templates/new-page.md)
  3. Settings → Core Plugins → Enable “Templates”
  4. Use: Ctrl+P → “Insert template”

Tags

Adding Tags

In frontmatter:

---
tags: [quality, process, reference]
---

Or inline: #quality and #processes

Finding Tags

Click any tag to see all pages with that tag, or search: tag:#quality


Search Tricks

Advanced Operators

OperatorExampleFinds
Exact phrase"detection timing"Exact match
Tagtag:#qualityPages with tag
In filefile:terminologyIn specific file
Pathpath:companyIn specific folder
Headingsection:overviewIn section headings

Combining

tag:#quality path:company "root cause"

Starred Pages

Quick access to frequently used pages — click the star icon in the header.

Recommend starring: terminology.md, index.md, pages you’re currently editing.


PluginPurpose
CalendarNavigate daily notes
OutlinerBetter bullet list editing
Advanced TablesEasier table editing
GitGit integration in Obsidian

Install: Settings → Community Plugins → Turn off Restricted Mode → Browse → Search → Install → Enable


Sync Options

Git (Current Setup)

git pull   # Before editing
git add -A && git commit -m "msg" && git push   # After editing

Other Options

  • Obsidian Sync ($10/month, automatic)
  • OneDrive/Dropbox folder sync
  • Syncthing (free, self-hosted)

Troubleshooting

  • Check spelling matches filename exactly
  • Check path is correct ([[folder/file]])
  • File extensions not needed ([[page]] not [[page.md]])

Graph View Empty

  • Make sure you have the vault open
  • Check there are .md files in the folder
  • Try: Ctrl+P → “Reload app without saving”

Search Not Finding Content

  • Wait for indexing to complete (progress bar at bottom)
  • Try simpler search terms


Last updated: February 2026