From d18c0d9df0ab39a4e4f4da7902e7f31fe1a4b8e3 Mon Sep 17 00:00:00 2001 From: Noritada Kobayashi Date: Tue, 30 Jan 2024 20:20:05 +0900 Subject: [PATCH] Make minor documentation corrections and improvements (#7070) This PR makes minor documentation corrections and improvements. Release Notes: - N/A --- docs/src/configuring_zed__configuring_vim.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/configuring_zed__configuring_vim.md b/docs/src/configuring_zed__configuring_vim.md index 22b84b274faa4bb55c0555a2ec7aad2698bc8b79..01d1607cac4a5d089169659beeecd7cd2e7fb082 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"} } ```