Skip to content

Commit

Permalink
docs: Standardize "Note" blockquote usage (#11724)
Browse files Browse the repository at this point in the history
Standardize the blockquote "Notes" usage, so all places are using the
`>` blockquote notation, as well as a consistent style for the "Note"
word.

PS: Thought that bolding the word "**Note**" would make for a higher
visual distinction, so went for it in all existing cases! No strong
feelings, though; happy to roll back to just "Note:" if that's
preferrable!

Release Notes:

- N/A
  • Loading branch information
danilo-leal committed May 13, 2024
1 parent 7613933 commit 2e8197c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/src/assistant-panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The assistant panel provides you with a way to interact with OpenAI's large language models. The assistant is good for various tasks, such as generating code, asking questions about existing code, and even writing plaintext, such as emails and documentation. To open the assistant panel, toggle the right dock by using the `workspace: toggle right dock` action in the command palette (`cmd-shift-p`).

_Note: A default binding can be set to toggle the right dock via the settings._
> **Note**: A default binding can be set to toggle the right dock via the settings.
## Setup

Expand Down
8 changes: 4 additions & 4 deletions docs/src/languages/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ You can also only execute a single ESLint rule when using `fixAll`:
}
```

**Note:** the other formatter you have configured will still run, after ESLint.
So if your language server or prettier configuration don't format according to
ESLint's rules, then they will overwrite what ESLint fixed and you end up with
errors.
> **Note:** the other formatter you have configured will still run, after ESLint.
> So if your language server or prettier configuration don't format according to
> ESLint's rules, then they will overwrite what ESLint fixed and you end up with
> errors.
If you **only** want to run ESLint on save, you can configure code actions as
the formatter (requires Zed `0.130.x`):
Expand Down
6 changes: 3 additions & 3 deletions docs/src/remote-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Currently the two instances connect via Zed's servers, but we intend to build pe

## Setup

> NOTE: You must be in the alpha program to see this UI. The instructions will likely change as the feature gets closer to launch.
> **Note**: You must be in the alpha program to see this UI. The instructions will likely change as the feature gets closer to launch.
1. Open the projects dialog with `cmd-option-o` and then click "Connect…".
2. Click "Add Server"
Expand All @@ -23,11 +23,11 @@ Currently the two instances connect via Zed's servers, but we intend to build pe
```
5. On the remote machine, paste the instructions from step 3.

> NOTE: Currently you must keep this process open. We are working on making it background itself.
> **Note**: Currently you must keep this process open. We are working on making it background itself.
> In the meantime, you can run `nohup zed --dev-server-token YY.XXX >~/.zed-log 2>&1 &`
6. On your laptop you can now open folders on the remote machine.
> NOTE: Zed does not currently handle opening very large directories (e.g. `/` or `~` that may have >100,000 files) very well. We are working on improving this, but suggest in the meantime opening only specific projects, or subfolders of very large mono-repos.
> **Note**: Zed does not currently handle opening very large directories (e.g. `/` or `~` that may have >100,000 files) very well. We are working on improving this, but suggest in the meantime opening only specific projects, or subfolders of very large mono-repos.
## Known Limitations

Expand Down

0 comments on commit 2e8197c

Please sign in to comment.