diff --git a/docs/src/configuring_zed__configuring_vim.md b/docs/src/configuring_zed__configuring_vim.md index 22b84b274f..01d1607cac 100644 --- a/docs/src/configuring_zed__configuring_vim.md +++ b/docs/src/configuring_zed__configuring_vim.md @@ -5,7 +5,7 @@ Zed includes a vim emulation layer known as “vim mode”. This document aims t ### 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. -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 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 There are a few Zed settings that you may also enjoy if you use vim mode: -``` +```json { // disable cursor blink - "cursor_blink": false + "cursor_blink": false, // use relative line numbers "relative_line_numbers": true, // hide the scroll bar - "scrollbar": {"show": "never"}, + "scrollbar": {"show": "never"} } ```