finding-navigating.md

 1# Finding & Navigating
 2
 3Zed provides several ways to move around your codebase quickly. Here's an overview of the main navigation tools.
 4
 5## Command Palette
 6
 7The Command Palette ({#kb command_palette::Toggle}) is your gateway to almost everything in Zed. Type a few characters to filter commands, then press Enter to execute.
 8
 9[Learn more about the Command Palette →](./command-palette.md)
10
11## File Finder
12
13Open any file in your project with {#kb file_finder::Toggle}. Type part of the filename or path to narrow results.
14
15## Project Search
16
17Search across all files with {#kb pane::DeploySearch}. Results appear in a [multibuffer](./multibuffers.md), letting you edit matches in place.
18
19## Go to Definition
20
21Jump to where a symbol is defined with {#kb editor::GoToDefinition} (or `Cmd+Click` / `Ctrl+Click`). If there are multiple definitions, they open in a multibuffer.
22
23## Go to Symbol
24
25- **Current file:** {#kb outline::Toggle} opens an outline of symbols in the active file
26- **Entire project:** {#kb project_symbols::Toggle} searches symbols across all files
27
28## Outline Panel
29
30The Outline Panel ({#kb outline_panel::ToggleFocus}) shows a persistent tree view of symbols in the current file. It's especially useful with [multibuffers](./multibuffers.md) for navigating search results or diagnostics.
31
32[Learn more about the Outline Panel →](./outline-panel.md)
33
34## Tab Switcher
35
36Quickly switch between open tabs with {#kb tab_switcher::Toggle}. Tabs are sorted by recent use—keep holding Ctrl and press Tab to cycle through them.
37
38[Learn more about the Tab Switcher →](./tab-switcher.md)
39
40## Quick Reference
41
42| Task | Keybinding |
43|------|------------|
44| Command Palette | {#kb command_palette::Toggle} |
45| Open file | {#kb file_finder::Toggle} |
46| Project search | {#kb pane::DeploySearch} |
47| Go to definition | {#kb editor::GoToDefinition} |
48| Find references | {#kb editor::FindAllReferences} |
49| Symbol in file | {#kb outline::Toggle} |
50| Symbol in project | {#kb project_symbols::Toggle} |
51| Outline Panel | {#kb outline_panel::ToggleFocus} |
52| Tab Switcher | {#kb tab_switcher::Toggle} |