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## Project Panel
17
18The Project Panel ({#kb project_panel::ToggleFocus}) shows a tree view of your workspace's files and directories. Browse, create, rename, move, and delete files without leaving the editor. It also surfaces git status and diagnostics at a glance.
19
20[Learn more about the Project Panel →](./project-panel.md)
21
22## File Finder
23
24Open any file in your project with {#kb file_finder::Toggle}. Type part of the filename or path to narrow results.
25
26## Project Search
27
28Search across all files with {#kb pane::DeploySearch}. Start typing in the search field to begin searching—results appear as you type.
29
30Results appear in a [multibuffer](./multibuffers.md), letting you edit matches in place.
31
32## Go to Definition
33
34Jump 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.
35
36## Go to Symbol
37
38- **Current file:** {#kb outline::Toggle} opens an outline of symbols in the active file
39- **Entire project:** {#kb project_symbols::Toggle} searches symbols across all files
40
41## Outline Panel
42
43The 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.
44
45[Learn more about the Outline Panel →](./outline-panel.md)
46
47## Tab Switcher
48
49Quickly 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.
50
51[Learn more about the Tab Switcher →](./tab-switcher.md)
52
53## Quick Reference
54
55| Task | Keybinding |
56| ----------------- | -------------------------------- |
57| Command Palette | {#kb command_palette::Toggle} |
58| Open file | {#kb file_finder::Toggle} |
59| Project search | {#kb pane::DeploySearch} |
60| Go to definition | {#kb editor::GoToDefinition} |
61| Find references | {#kb editor::FindAllReferences} |
62| Symbol in file | {#kb outline::Toggle} |
63| Symbol in project | {#kb project_symbols::Toggle} |
64| Outline Panel | {#kb outline_panel::ToggleFocus} |
65| Tab Switcher | {#kb tab_switcher::Toggle} |
66| Project Panel | {#kb project_panel::ToggleFocus} |