Ctrl+P to instantly access files, run commands, switch buffers, or jump to any line — all with fuzzy matching.
Opening the Command Palette
Command Palette Modes
The command palette has four distinct modes, each triggered by a prefix character:File Finder Mode
The default mode — open files quickly with fuzzy matching:Open palette
Ctrl+P (opens in file finder mode automatically)Type to search
Select and open
↑/↓ arrows to select, press Enter to open, or Tab to accept the top suggestionFuzzy Matching
Fresh’s fuzzy matching is incredibly flexible:File Finder Behavior
Git Integration
.gitignore)Fast
Smart Ranking
Path Context
Command Mode
Search and execute any editor command:Open command mode
Ctrl+P then type > (or just press Ctrl+P and type >)Search for command
Execute
Enter to run the selected commandCommonly Used Commands
View & Layout Commands
View & Layout Commands
- Split Vertical — Create side-by-side panes
- Split Horizontal — Create top/bottom panes
- Close Split — Remove current split
- Toggle File Explorer — Show/hide sidebar
- Toggle Line Wrap — Wrap long lines
- Toggle Line Numbers — Show/hide line numbers
File Operations
File Operations
- Save — Save current file
- Save As — Save to a new location
- Close Buffer — Close current file
- New File — Create a new buffer
- Revert File — Reload from disk
Editing Commands
Editing Commands
- Sort Lines — Sort selected lines alphabetically
- Trim Trailing Whitespace — Remove trailing spaces
- Toggle Comment — Comment/uncomment lines
- Go to Matching Bracket — Jump to matching brace
Search & Replace
Search & Replace
- Search and Replace in Project — Project-wide find/replace
- Query Replace — Interactive y/n/! replace
- Find Next — Jump to next search match
LSP Commands
LSP Commands
- Go to Definition — Jump to symbol definition
- Find References — Show all usages
- Rename Symbol — Rename across files
- Format Document — Auto-format code
- Code Actions — Show available fixes
Settings & Customization
Settings & Customization
- Open Settings — Open settings UI
- Select Theme — Browse and apply color themes
- Configure Keybindings — Open keybinding editor
- Set Language — Override file syntax highlighting
Buffer Switch Mode
Quickly switch between open files:Open buffer mode
Ctrl+P then type #Type buffer name
Switch
Enter to switch to the selected buffer#) only shows currently open files, while file finder (no prefix) searches all files in your project.When to Use Buffer Mode
Use Buffer Mode When
- Switching between files you already have open
- You have many files open and want to filter by name
- You want to see what’s currently open
Use File Finder When
- Opening a file that isn’t currently open
- You don’t remember if the file is already open
- Exploring the project structure
Go to Line Mode
Jump directly to any line number:Open go to line
Ctrl+G (direct shortcut) or Ctrl+P then type :Enter line number
42)Jump
Enter to move cursor to that lineLarge File Support
When working with large files:File shows byte offsets
Use go to line
Ctrl+G — Fresh offers to scan the file for line numbersWait for scan
Navigate normally
Command Palette Tips
No need to memorize prefixes
No need to memorize prefixes
>, #, or : to switch modes mid-search.Tab for autocomplete
Tab for autocomplete
Tab to accept the top suggestion in any mode. Great for quick file opening.Recent files appear first
Recent files appear first
Use command mode for discovery
Use command mode for discovery
>) and type keywords to explore.Command palette works everywhere
Command palette works everywhere
Keyboard Navigation
Navigate the command palette efficiently:Examples and Workflows
Workflow 1: Quickly Open Related Files
Open component
Ctrl+P → type Button → EnterOpen test file
Ctrl+P → type Button test → EnterOpen styles
Ctrl+P → type Button css → EnterWorkflow 2: Split and Format
Create split
Ctrl+P → > → type split vert → EnterOpen file in split
Ctrl+P → type filename → EnterFormat code
Ctrl+P → > → type format → EnterWorkflow 3: Jump to Error
See error on line 156
error on line 156Jump directly
Ctrl+G → type 156 → Enter