mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Make minor documentation corrections and improvements (#7070)
This PR makes minor documentation corrections and improvements. Release Notes: - N/A
This commit is contained in:
parent
a0582d02b9
commit
d18c0d9df0
@ -5,7 +5,7 @@ Zed includes a vim emulation layer known as “vim mode”. This document aims t
|
|||||||
### Philosophy
|
### Philosophy
|
||||||
Vim mode in Zed is supposed to primarily "do what you expect": it mostly tries to copy vim exactly, but will use Zed-specific functionality when available to make things smoother.
|
Vim mode in Zed is supposed to primarily "do what you expect": it mostly tries to copy vim exactly, but will use Zed-specific functionality when available to make things smoother.
|
||||||
|
|
||||||
This means Zed will never be 100% vim compatible, but should be 100% vim familiar! We expect that our vim mode already copes with 90% of your workflow, and we'd like to keep improving it. If you find things that you can’t yet do in vim mode, but which you rely on in your current workflow, please leave feedback in the editor itself (`:feedback`), or [file an issue](https://github.com/zed-industries/zed).
|
This means Zed will never be 100% vim compatible, but should be 100% vim familiar! We expect that our vim mode already copes with 90% of your workflow, and we'd like to keep improving it. If you find things that you can’t yet do in vim mode, but which you rely on in your current workflow, please leave feedback in the editor itself (`:feedback`), or [file an issue](https://github.com/zed-industries/zed/issues).
|
||||||
|
|
||||||
### Zed-specific features
|
### Zed-specific features
|
||||||
Zed is built on a modern foundation that (among other things) uses tree-sitter to understand the content of the file you're editing, and supports multiple cursors out of the box.
|
Zed is built on a modern foundation that (among other things) uses tree-sitter to understand the content of the file you're editing, and supports multiple cursors out of the box.
|
||||||
@ -142,14 +142,14 @@ Currently supported vim-specific commands (as of Zed 0.106):
|
|||||||
|
|
||||||
### Related settings
|
### Related settings
|
||||||
There are a few Zed settings that you may also enjoy if you use vim mode:
|
There are a few Zed settings that you may also enjoy if you use vim mode:
|
||||||
```
|
```json
|
||||||
{
|
{
|
||||||
// disable cursor blink
|
// disable cursor blink
|
||||||
"cursor_blink": false
|
"cursor_blink": false,
|
||||||
// use relative line numbers
|
// use relative line numbers
|
||||||
"relative_line_numbers": true,
|
"relative_line_numbers": true,
|
||||||
// hide the scroll bar
|
// hide the scroll bar
|
||||||
"scrollbar": {"show": "never"},
|
"scrollbar": {"show": "never"}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user