From 52963e0d102b5a76aefa2b1108fb017f0385e98c Mon Sep 17 00:00:00 2001 From: Rizel Scarlett Date: Sat, 26 Apr 2025 11:59:24 -0400 Subject: [PATCH] docs: adding docs for search functionality in ui (#2365) --- .../docs/guides/managing-goose-sessions.md | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/documentation/docs/guides/managing-goose-sessions.md b/documentation/docs/guides/managing-goose-sessions.md index 586c5ae314..babb55597c 100644 --- a/documentation/docs/guides/managing-goose-sessions.md +++ b/documentation/docs/guides/managing-goose-sessions.md @@ -160,3 +160,36 @@ You can resume a CLI session in Desktop and vice versa. ::: + +## Search Within Sessions + +Search allows you to find specific content within your current session. The search functionality is available in both CLI and Desktop interfaces. + + + + Search functionality is provided by your terminal interface. Use the appropriate shortcut for your environment: + + | Terminal | Operating System | Shortcut | + |----------|-----------------|-----------| + | iTerm2 | macOS | `Cmd+F` | + | Terminal.app | macOS | `Cmd+F` | + | Windows Terminal | Windows | `Ctrl+F` | + | Linux Terminal | Linux | `Ctrl+F` | + + :::info + Your specific terminal emulator may use a different keyboard shortcut. Check your terminal's documentation or settings for the search command. + ::: + + + Trigger search using keyboard shortcuts or the search icon: + + | Action | macOS | Windows/Linux | + |--------|-------|---------------| + | Open Search | `Cmd+F` | `Ctrl+F` | + | Previous Match | `↑` | `↑` | + | Next Match | `↓` | `↓` | + | Toggle Case-Sensitivity | `Aa` | `Aa` | + | Close Search | `Esc` or X | `Esc` or X | + + + \ No newline at end of file