Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:54:49.256Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

docs/src/outline-panel.md

2.1 KB

title: Outline Panel - Zed description: Navigate code structure with Zed's outline panel. View symbols, jump to definitions, and browse file outlines.

Outline Panel

In addition to the modal outline (cmd-shift-o), Zed offers an outline panel. The outline panel can be deployed via cmd-shift-b ({#action outline_panel::ToggleFocus} via the command palette), or by clicking the Outline Panel button in the status bar.

When viewing a "singleton" buffer (i.e., a single file on a tab), the outline panel works similarly to that of the outline modal-it displays the outline of the current buffer's symbols. Each symbol entry shows its type prefix (such as "struct", "fn", "mod", "impl") along with the symbol name, helping you quickly identify what kind of symbol you're looking at. Clicking on an entry allows you to jump to the associated section in the file. The outline view will also automatically scroll to the section associated with the current cursor position within the file.

[Image: Using the outline panel in a singleton buffer]

Usage with multibuffers

The outline panel truly excels when used with multi-buffers. Here are some examples of its versatility:

Project Search Results

Get an overview of search results across your project.

[Image: Using the outline panel in a project search multi-buffer]

Project Diagnostics

View a summary of all errors and warnings reported by the language server.

[Image: Using the outline panel while viewing project diagnostics multi-buffer]

Find All References

Quickly navigate through all references when using the {#action editor::FindAllReferences} action.

[Image: Using the outline panel while viewing `find all references` multi-buffer]

The outline view provides a great way to quickly navigate to specific parts of your code and helps you maintain context when working with large result sets in multi-buffers.

Served at tenant.openagents/omega Member data and write actions are omitted.