From c508d4f55efd9f93f05619c4c7f706aac1b16cde Mon Sep 17 00:00:00 2001 From: Natanel Shitrit <65548905+Natanel-Shitrit@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:58:53 +0300 Subject: [PATCH] Fix broken link in `fuzzy-finding.md` --- docs/src/user-input/fuzzy-finding.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/user-input/fuzzy-finding.md b/docs/src/user-input/fuzzy-finding.md index 1dd2f628..2609ebd2 100644 --- a/docs/src/user-input/fuzzy-finding.md +++ b/docs/src/user-input/fuzzy-finding.md @@ -2,7 +2,7 @@ {{story cast input/find/full-bottom}} -Simple, fast, and configurable fuzzy finding is one of `cy`'s most important features. `cy` provides a purpose-built fuzzy finder (similar to [fzf](https://github.com/junegunn/fzf)) in the form of {{api input/find}}, which is a function available in [the API](./api.md#inputfind). +Simple, fast, and configurable fuzzy finding is one of `cy`'s most important features. `cy` provides a purpose-built fuzzy finder (similar to [fzf](https://github.com/junegunn/fzf)) in the form of {{api input/find}}, which is a function available in [the API](../api.md#inputfind). ## Choosing a string from a list @@ -12,7 +12,7 @@ In its simplest form, {{api input/find}} takes a single parameter: a [Janet arra (input/find @["one" "two" "three"]) ``` -By default, the background will be animated with one of `cy`'s [animations](./animations.md). If the user does not choose anything, this function returns `nil`; if they do, it will return the option that they chose. +By default, the background will be animated with one of `cy`'s [animations](../animations.md). If the user does not choose anything, this function returns `nil`; if they do, it will return the option that they chose. ## Choosing an arbitrary value from a list @@ -53,7 +53,7 @@ It is sometimes handy to be able to have the user choose from a row in a table r Where {{api input/find}} really shines, however, is in its ability to show a preview window for each option, which is conceptually similar to `fzf`'s `--preview` command line flag. {{api input/find}} can preview three different types of content: -- **Panes:** Show the current state of a pane in `cy`'s [node tree](./groups-and-panes.md#the-node-tree). This is the live view of a pane, regardless of how many other clients are interacting with it or what is happening on the screen. +- **Panes:** Show the current state of a pane in `cy`'s [node tree](../groups-and-panes.md#the-node-tree). This is the live view of a pane, regardless of how many other clients are interacting with it or what is happening on the screen. - **`.borg` files:** Show a moment in time in a `.borg` file. - **Scrollback buffer:** Show the output of a particular command in a pane's scrollback buffer. - **Text:** Render some text.