Skip to content
Feather Logo

Feather Documentation

Native markdown editor for Windows

Back to Support

Editing Basics

Creating and Opening Files

  • New file: Ctrl+N creates a new untitled tab
  • Open file: Ctrl+O opens a file picker
  • Save: Ctrl+S saves the current file
  • Save As: Ctrl+Shift+S saves to a new location
  • Revert: Reload the file from disk, discarding unsaved changes
  • Recent files: File > Open Recent shows your last 20 files

You can also drag and drop .md files directly onto the Feather window to open them.

Multi-Tab Editing

Each tab maintains its own independent state, including cursor position, scroll position, view mode, and undo history. Unsaved changes are indicated by a dot on the tab title.

Pristine Tab Replacement

If you open a file while the only tab is an empty, untitled document, Feather replaces that tab instead of adding a new one alongside it.

Renaming Tabs

Double-click a tab title to rename it. If the tab is backed by a file on disk, this renames the actual file and updates your recent files list.

View Modes

Feather has three view modes, accessible from the toolbar or keyboard:

Mode Shortcut Description
Edit Ctrl+1 Full-width text editor
Split Ctrl+2 Side-by-side editor and live preview
Preview Ctrl+3 Full-width rendered preview

In Split mode, scrolling is synchronized between the editor and preview. You can toggle sync scrolling from the toolbar.

Find & Replace

Find (Ctrl+F)

  1. Press Ctrl+F to open the find bar
  2. Type your search term
  3. Press Enter to jump to the next match, Shift+Enter for the previous match
  4. The match counter shows your position (e.g., "3 of 12")
  5. Toggle case sensitivity with the button in the find bar

Replace (Ctrl+H)

  1. Press Ctrl+H to open find and replace
  2. Enter your search term and replacement text
  3. Click Replace to replace the current match, or Replace All to replace every occurrence

Smart Paste

Feather detects what you're pasting and formats it automatically:

  • URL + selected text: If you have text selected and paste a URL, Feather creates a markdown link [selected text](url)
  • Media URL: Pasting an image or video URL inserts a markdown image ![](url)

Edit in Preview

Double-click any rendered block in the preview pane to edit its raw markdown inline. This lets you make targeted edits without switching to the editor. See Edit in Preview for details.

Document Outline

Toggle the outline panel from the toolbar to see a table of contents generated from your headings. Click any heading to jump to it. See Outline Panel for details.

Getting Help