finding-navigating.md

 1---
 2title: Finding and Navigating Code - Zed
 3description: Navigate your codebase in Zed with file finder, project search, go to definition, symbol search, and the command palette.
 4---
 5
 6# Finding & Navigating
 7
 8Zed provides several ways to move around your codebase quickly. Here's an overview of the main navigation tools.
 9
10## Command Palette
11
12The 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.
13
14[Learn more about the Command Palette →](./command-palette.md)
15
16## File Finder
17
18Open any file in your project with {#kb file_finder::Toggle}. Type part of the filename or path to narrow results.
19
20## Project Search
21
22Search across all files with {#kb pane::DeploySearch}. Results appear in a [multibuffer](./multibuffers.md), letting you edit matches in place.
23
24## Go to Definition
25
26Jump 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.
27
28## Go to Symbol
29
30- **Current file:** {#kb outline::Toggle} opens an outline of symbols in the active file
31- **Entire project:** {#kb project_symbols::Toggle} searches symbols across all files
32
33## Outline Panel
34
35The 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.
36
37[Learn more about the Outline Panel →](./outline-panel.md)
38
39## Tab Switcher
40
41Quickly 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.
42
43[Learn more about the Tab Switcher →](./tab-switcher.md)
44
45## Quick Reference
46
47| Task              | Keybinding                       |
48| ----------------- | -------------------------------- |
49| Command Palette   | {#kb command_palette::Toggle}    |
50| Open file         | {#kb file_finder::Toggle}        |
51| Project search    | {#kb pane::DeploySearch}         |
52| Go to definition  | {#kb editor::GoToDefinition}     |
53| Find references   | {#kb editor::FindAllReferences}  |
54| Symbol in file    | {#kb outline::Toggle}            |
55| Symbol in project | {#kb project_symbols::Toggle}    |
56| Outline Panel     | {#kb outline_panel::ToggleFocus} |
57| Tab Switcher      | {#kb tab_switcher::Toggle}       |