vim.md

  1# Vim Mode
  2
  3Zed includes a Vim emulation layer known as "vim mode". On this page, you will learn how to turn Zed's vim mode on or off, what tools and commands Zed provides to help you navigate and edit your code, and generally how to make the most of vim mode in Zed.
  4
  5You'll learn how to:
  6
  7- Understand the core differences between Zed's vim mode and traditional Vim
  8- Enable or disable vim mode
  9- Make the most of Zed-specific features within vim mode
 10- Customize vim mode key bindings
 11- Configure vim mode settings
 12
 13Whether you're new to vim mode or an experienced Vim user looking to optimize your Zed experience, this guide will help you harness the full power of modal editing in Zed.
 14
 15## Zed's vim mode design
 16
 17Vim mode tries to offer a familiar experience to Vim users: it replicates the behavior of motions and commands precisely when it makes sense and uses Zed-specific functionality to provide an editing experience that "just works" without requiring configuration on your part.
 18
 19This includes support for semantic navigation, multiple cursors, or other features usually provided by plugins like surrounding text.
 20
 21So, Zed's vim mode does not replicate Vim one-to-one, but it meshes Vim's modal design with Zed's modern features to provide a more fluid experience. It's also configurable, so you can add your own key bindings or override the defaults.
 22
 23### Core differences
 24
 25There are four types of features in vim mode that use Zed's core functionality, leading to some differences in behavior:
 26
 271. **Motions**: vim mode uses Zed's semantic parsing to tune the behavior of motions per language. For example, in Rust, jumping to matching bracket with `%` works with the pipe character `|`. In JavaScript, `w` considers `$` to be a word character.
 282. **Visual block selections**: vim mode uses Zed's multiple cursor to emulate visual block selections, making block selections a lot more flexible. For example, anything you insert after a block selection updates on every line in real-time, and you can add or remove cursors anytime.
 293. **Macros**: vim mode uses Zed's recording system for vim macros. So, you can capture and replay more complex actions, like autocompletion.
 304. **Search and replace**: vim mode uses Zed's search system, so, the syntax for regular expressions is slightly different compared to Vim. [Head to the Regex differences section](#regex-differences) for details.
 31
 32> **Note:** The foundations of Zed's vim mode should already cover many use cases, and we're always looking to improve it. If you find missing features that you rely on in your workflow, please [file an issue on GitHub](https://github.com/zed-industries/zed/issues).
 33
 34## Enabling and disabling vim mode
 35
 36When you first open Zed, you'll see a checkbox on the welcome screen that allows you to enable vim mode.
 37
 38If you missed this, you can toggle vim mode on or off anytime by opening the command palette and using the workspace command `toggle vim mode`.
 39
 40> **Note**: This command toggles the following property in your user settings:
 41>
 42> ```json
 43> {
 44>   "vim_mode": true
 45> }
 46> ```
 47
 48## Zed-specific features
 49
 50Zed is built on a modern foundation that (among other things) uses tree-sitter and language servers to understand the content of the file you're editing and supports multiple cursors out of the box.
 51
 52Vim mode has several "core Zed" key bindings that will help you make the most of Zed's specific feature set.
 53
 54### Language server
 55
 56The following commands use the language server to help you navigate and refactor your code.
 57
 58| Command                                  | Default Shortcut |
 59| ---------------------------------------- | ---------------- |
 60| Go to definition                         | `g d`            |
 61| Go to declaration                        | `g D`            |
 62| Go to type definition                    | `g y`            |
 63| Go to implementation                     | `g I`            |
 64| Rename (change definition)               | `c d`            |
 65| Go to All references to the current word | `g A`            |
 66| Find symbol in current file              | `g s`            |
 67| Find symbol in entire project            | `g S`            |
 68| Go to next diagnostic                    | `g ]` or `] d`   |
 69| Go to previous diagnostic                | `g [` or `[ d`   |
 70| Show inline error (hover)                | `g h`            |
 71| Open the code actions menu               | `g .`            |
 72
 73### Git
 74
 75| Command                         | Default Shortcut |
 76| ------------------------------- | ---------------- |
 77| Go to next git change           | `] c`            |
 78| Go to previous git change       | `[ c`            |
 79| Expand diff hunk                | `d o`            |
 80| Toggle staged                   | `d O`            |
 81| Stage and next (in diff view)   | `d u`            |
 82| Unstage and next (in diff view) | `d U`            |
 83| Restore change                  | `d p`            |
 84
 85### Treesitter
 86
 87Treesitter is a powerful tool that Zed uses to understand the structure of your code. Zed provides motions that change the current cursor position, and text objects that can be used as the target of actions.
 88
 89| Command                         | Default Shortcut            |
 90| ------------------------------- | --------------------------- |
 91| Go to next/previous method      | `] m` / `[ m`               |
 92| Go to next/previous method end  | `] M` / `[ M`               |
 93| Go to next/previous section     | `] ]` / `[ [`               |
 94| Go to next/previous section end | `] [` / `[ ]`               |
 95| Go to next/previous comment     | `] /`, `] *` / `[ /`, `[ *` |
 96| Select a larger syntax node     | `[ x`                       |
 97| Select a smaller syntax node    | `] x`                       |
 98
 99| Text Objects                                               | Default Shortcut |
100| ---------------------------------------------------------- | ---------------- |
101| Around a class, definition, etc.                           | `a c`            |
102| Inside a class, definition, etc.                           | `i c`            |
103| Around a function, method etc.                             | `a f`            |
104| Inside a function, method, etc.                            | `i f`            |
105| A comment                                                  | `g c`            |
106| An argument, or list item, etc.                            | `i a`            |
107| An argument, or list item, etc. (including trailing comma) | `a a`            |
108| Around an HTML-like tag                                    | `a t`            |
109| Inside an HTML-like tag                                    | `i t`            |
110| The current indent level, and one line before and after    | `a I`            |
111| The current indent level, and one line before              | `a i`            |
112| The current indent level                                   | `i i`            |
113
114Note that the definitions for the targets of the `[m` family of motions are the same as the
115boundaries defined by `af`. The targets of the `[[` are the same as those defined by `ac`, though
116if there are no classes, then functions are also used. Similarly `gc` is used to find `[ /`. `g c`
117
118The definition of functions, classes and comments is language dependent, and support can be added
119to extensions by adding a [`textobjects.scm`]. The definition of arguments and tags operates at
120the tree-sitter level, but looks for certain patterns in the parse tree and is not currently configurable
121per language.
122
123### Multi cursor
124
125These commands help you manage multiple cursors in Zed.
126
127| Command                                                      | Default Shortcut |
128| ------------------------------------------------------------ | ---------------- |
129| Add a cursor selecting the next copy of the current word     | `g l`            |
130| Add a cursor selecting the previous copy of the current word | `g L`            |
131| Skip latest word selection, and add next                     | `g >`            |
132| Skip latest word selection, and add previous                 | `g <`            |
133| Add a visual selection for every copy of the current word    | `g a`            |
134
135### Pane management
136
137These commands open new panes or jump to specific panes.
138
139| Command                                    | Default Shortcut   |
140| ------------------------------------------ | ------------------ |
141| Open a project-wide search                 | `g /`              |
142| Open the current search excerpt            | `g <space>`        |
143| Open the current search excerpt in a split | `<ctrl-w> <space>` |
144| Go to definition in a split                | `<ctrl-w> g d`     |
145| Go to type definition in a split           | `<ctrl-w> g D`     |
146
147### In insert mode
148
149The following commands help you bring up Zed's completion menu, request a suggestion from GitHub Copilot, or open the inline AI assistant without leaving insert mode.
150
151| Command                                                                      | Default Shortcut |
152| ---------------------------------------------------------------------------- | ---------------- |
153| Open the completion menu                                                     | `ctrl-x ctrl-o`  |
154| Request GitHub Copilot suggestion (requires GitHub Copilot to be configured) | `ctrl-x ctrl-c`  |
155| Open the inline AI assistant (requires a configured assistant)               | `ctrl-x ctrl-a`  |
156| Open the code actions menu                                                   | `ctrl-x ctrl-l`  |
157| Hides all suggestions                                                        | `ctrl-x ctrl-z`  |
158
159### Supported plugins
160
161Zed's vim mode includes some features that are usually provided by very popular plugins in the Vim ecosystem:
162
163- You can surround text objects with `ys` (yank surround), change surrounding with `cs`, and delete surrounding with `ds`.
164- You can comment and uncomment selections with `gc` in visual mode and `gcc` in normal mode.
165- The project panel supports many shortcuts modeled after the Vim plugin `netrw`: navigation with `hjkl`, open file with `o`, open file in a new tab with `t`, etc.
166- You can add key bindings to your keymap to navigate "camelCase" names. [Head down to the Optional key bindings](#optional-key-bindings) section to learn how.
167- You can use `gr` to do [ReplaceWithRegister](https://github.com/vim-scripts/ReplaceWithRegister).
168- You can use `cx` for [vim-exchange](https://github.com/tommcdo/vim-exchange) functionality. Note that it does not have a default binding in visual mode, but you can add one to your keymap (refer to the [optional key bindings](#optional-key-bindings) section).
169
170## Command palette
171
172Vim mode allows you to open Zed's command palette with `:`. You can then type to access any usual Zed command. Additionally, vim mode adds aliases for popular Vim commands to ensure your muscle memory transfers to Zed. For example, you can write `:w` or `:write` to save the file.
173
174Below, you'll find tables listing the commands you can use in the command palette. We put optional characters in square brackets to indicate that you can omit them.
175
176> **Note**: We don't emulate the full power of Vim's command line yet. In particular, commands currently do not support arguments. Please [file issues on GitHub](https://github.com/zed-industries/zed) as you find things that are missing from the command palette.
177
178### File and window management
179
180This table shows commands for managing windows, tabs, and panes. As commands don't support arguments currently, you cannot specify a filename when saving or creating a new file.
181
182| Command        | Description                                          |
183| -------------- | ---------------------------------------------------- |
184| `:w[rite][!]`  | Save the current file                                |
185| `:wq[!]`       | Save the file and close the buffer                   |
186| `:q[uit][!]`   | Close the buffer                                     |
187| `:wa[ll][!]`   | Save all open files                                  |
188| `:wqa[ll][!]`  | Save all open files and close all buffers            |
189| `:qa[ll][!]`   | Close all buffers                                    |
190| `:[e]x[it][!]` | Close the buffer                                     |
191| `:up[date]`    | Save the current file                                |
192| `:cq`          | Quit completely (close all running instances of Zed) |
193| `:vs[plit]`    | Split the pane vertically                            |
194| `:sp[lit]`     | Split the pane horizontally                          |
195| `:new`         | Create a new file in a horizontal split              |
196| `:vne[w]`      | Create a new file in a vertical split                |
197| `:tabedit`     | Create a new file in a new tab                       |
198| `:tabnew`      | Create a new file in a new tab                       |
199| `:tabn[ext]`   | Go to the next tab                                   |
200| `:tabp[rev]`   | Go to previous tab                                   |
201| `:tabc[lose]`  | Close the current tab                                |
202
203> **Note:** The `!` character is used to force the command to execute without saving changes or prompting before overwriting a file.
204
205### Ex commands
206
207These ex commands open Zed's various panels and windows.
208
209| Command                      | Default Shortcut |
210| ---------------------------- | ---------------- |
211| Open the project panel       | `:E[xplore]`     |
212| Open the collaboration panel | `:C[ollab]`      |
213| Open the chat panel          | `:Ch[at]`        |
214| Open the AI panel            | `:A[I]`          |
215| Open the git panel           | `:G[it]`         |
216| Open the notifications panel | `:No[tif]`       |
217| Open the feedback window     | `:fe[edback]`    |
218| Open the diagnostics window  | `:cl[ist]`       |
219| Open the terminal            | `:te[rm]`        |
220| Open the extensions window   | `:Ext[ensions]`  |
221
222### Navigating diagnostics
223
224These commands navigate diagnostics.
225
226| Command                  | Description                    |
227| ------------------------ | ------------------------------ |
228| `:cn[ext]` or `:ln[ext]` | Go to the next diagnostic      |
229| `:cp[rev]` or `:lp[rev]` | Go to the previous diagnostics |
230| `:cc` or `:ll`           | Open the errors page           |
231
232### Git
233
234These commands interact with the version control system git.
235
236| Command         | Description                                             |
237| --------------- | ------------------------------------------------------- |
238| `:dif[fupdate]` | View the diff under the cursor (`d o` in normal mode)   |
239| `:rev[ert]`     | Revert the diff under the cursor (`d p` in normal mode) |
240
241### Jump
242
243These commands jump to specific positions in the file.
244
245| Command             | Description                         |
246| ------------------- | ----------------------------------- |
247| `:<number>`         | Jump to a line number               |
248| `:$`                | Jump to the end of the file         |
249| `:/foo` and `:?foo` | Jump to next/prev line matching foo |
250
251### Replacement
252
253This command replaces text. It emulates the substitute command in vim. The substitute command uses regular expressions, and Zed uses a slightly different syntax than vim. You can learn more about Zed's syntax below, [in the regex differences section](#regex-differences). Also, by default, Zed always replaces all occurrences of the search pattern in the current line.
254
255| Command              | Description                       |
256| -------------------- | --------------------------------- |
257| `:[range]s/foo/bar/` | Replace instances of foo with bar |
258
259### Editing
260
261These commands help you edit text.
262
263| Command           | Description                                             |
264| ----------------- | ------------------------------------------------------- |
265| `:j[oin]`         | Join the current line                                   |
266| `:d[elete][l][p]` | Delete the current line                                 |
267| `:s[ort] [i]`     | Sort the current selection (with i, case-insensitively) |
268| `:y[ank]`         | Yank (copy) the current selection or line               |
269
270### Command mnemonics
271
272As any Zed command is available, you may find that it's helpful to remember mnemonics that run the correct command. For example:
273
274- `:diffs` for "toggle all hunk diffs"
275- `:cpp` for "copy path to file"
276- `:crp` for "copy relative path"
277- `:reveal` for "reveal in finder"
278- `:zlog` for "open zed log"
279- `:clank` for "cancel language server work"
280
281## Customizing key bindings
282
283In this section, we'll learn how to customize the key bindings of Zed's vim mode. You'll learn:
284
285- How to select the correct context for your new key bindings.
286- Useful contexts for vim mode key bindings.
287- Common key bindings to customize for extra productivity.
288
289### Selecting the correct context
290
291Zed's key bindings are evaluated only when the `"context"` property matches your location in the editor. For example, if you add key bindings to the `"Editor"` context, they will only work when you're editing a file. If you add key bindings to the `"Workspace"` context, they will work everywhere in Zed. Here's an example of a key binding that saves when you're editing a file:
292
293```json
294{
295  "context": "Editor",
296  "bindings": {
297    "ctrl-s": "file::Save"
298  }
299}
300```
301
302Contexts are nested, so when you're editing a file, the context is the `"Editor"` context, which is inside the `"Pane"` context, which is inside the `"Workspace"` context. That's why any key bindings you add to the `"Workspace"` context will work when you're editing a file. Here's an example:
303
304```json
305// This key binding will work when you're editing a file. It comes built into Zed by default as the workspace: save command.
306{
307  "context": "Workspace",
308  "bindings": {
309    "ctrl-s": "file::Save"
310  }
311}
312```
313
314Contexts are expressions. They support boolean operators like `&&` (and) and `||` (or). For example, you can use the context `"Editor && vim_mode == normal"` to create key bindings that only work when you're editing a file _and_ you're in vim's normal mode.
315
316Vim mode adds several contexts to the `"Editor"` context:
317
318| Operator             | Description                                                                                                                                                                        |
319| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
320| VimControl           | Indicates that vim keybindings should work. Currently an alias for `vim_mode == normal \|\| vim_mode == visual \|\| vim_mode == operator`, but the definition may change over time |
321| vim_mode == normal   | Normal mode                                                                                                                                                                        |
322| vim_mode == visual   | Visual mode                                                                                                                                                                        |
323| vim_mode == insert   | Insert mode                                                                                                                                                                        |
324| vim_mode == replace  | Replace mode                                                                                                                                                                       |
325| vim_mode == waiting  | Waiting for an arbitrary key (e.g., after typing `f` or `t`)                                                                                                                       |
326| vim_mode == operator | Waiting for another binding to trigger (e.g., after typing `c` or `d`)                                                                                                             |
327| vim_operator         | Set to `none` unless `vim_mode == operator`, in which case it is set to the current operator's default keybinding (e.g., after typing `d`, `vim_operator == d`)                    |
328
329> **Note**: Contexts are matched only on one level at a time. So it is possible to use the expression `"Editor && vim_mode == normal"`, but `"Workspace && vim_mode == normal"` will never match because we set the vim context at the `"Editor"` level.
330
331### Useful contexts for vim mode key bindings
332
333Here's a template with useful vim mode contexts to help you customize your vim mode key bindings. You can copy it and integrate it into your user keymap.
334
335```json
336[
337  {
338    "context": "VimControl && !menu",
339    "bindings": {
340      // Put key bindings here if you want them to work in normal & visual mode.
341    }
342  },
343  {
344    "context": "vim_mode == normal && !menu",
345    "bindings": {
346      // "shift-y": ["workspace::SendKeystrokes", "y $"] // Use neovim's yank behavior: yank to end of line.
347    }
348  },
349  {
350    "context": "vim_mode == insert",
351    "bindings": {
352      // "j k": "vim::NormalBefore" // In insert mode, make jk escape to normal mode.
353    }
354  },
355  {
356    "context": "EmptyPane || SharedScreen",
357    "bindings": {
358      // Put key bindings here (in addition to the context above) if you want them to
359      // work when no editor exists.
360      // "space f": "file_finder::Toggle"
361    }
362  }
363]
364```
365
366> **Note**: If you would like to emulate Vim's `map` commands (`nmap`, etc.), you can use the action `workspace::SendKeystrokes` in the correct context.
367
368### Optional key bindings
369
370By default, you can navigate between the different files open in the editor with shortcuts like `ctrl+w` followed by one of `hjkl` to move to the left, down, up, or right, respectively.
371
372But you cannot use the same shortcuts to move between all the editor docks (the terminal, project panel, assistant panel, ...). If you want to use the same shortcuts to navigate to the docks, you can add the following key bindings to your user keymap.
373
374```json
375{
376  "context": "Dock",
377  "bindings": {
378    "ctrl-w h": "workspace::ActivatePaneLeft",
379    "ctrl-w l": "workspace::ActivatePaneRight",
380    "ctrl-w k": "workspace::ActivatePaneUp",
381    "ctrl-w j": "workspace::ActivatePaneDown"
382    // ... or other keybindings
383  }
384}
385```
386
387Subword motion, which allows you to navigate and select individual words in camelCase or snake_case, is not enabled by default. To enable it, add these bindings to your keymap.
388
389```json
390{
391  "context": "VimControl && !menu && vim_mode != operator",
392  "bindings": {
393    "w": "vim::NextSubwordStart",
394    "b": "vim::PreviousSubwordStart",
395    "e": "vim::NextSubwordEnd",
396    "g e": "vim::PreviousSubwordEnd"
397  }
398}
399```
400
401Vim mode comes with shortcuts to surround the selection in normal mode (`ys`), but it doesn't have a shortcut to add surrounds in visual mode. By default, `shift-s` substitutes the selection (erases the text and enters insert mode). To use `shift-s` to add surrounds in visual mode, you can add the following object to your keymap.
402
403```json
404{
405  "context": "vim_mode == visual",
406  "bindings": {
407    "shift-s": ["vim::PushAddSurrounds", {}]
408  }
409}
410```
411
412In non-modal text editors, cursor navigation typically wraps when moving past line ends. Zed, however, handles this behavior exactly like Vim by default: the cursor stops at line boundaries. If you prefer your cursor to wrap between lines, override these keybindings:
413
414```json
415// In VimScript, this would look like this:
416// set whichwrap+=<,>,[,],h,l
417{
418  "context": "VimControl && !menu",
419  "bindings": {
420    "left": "vim::WrappingLeft",
421    "right": "vim::WrappingRight",
422    "h": "vim::WrappingLeft",
423    "l": "vim::WrappingRight"
424  }
425}
426```
427
428The [Sneak motion](https://github.com/justinmk/vim-sneak) feature allows for quick navigation to any two-character sequence in your text. You can enable it by adding the following keybindings to your keymap. By default, the `s` key is mapped to `vim::Substitute`. Adding these bindings will override that behavior, so ensure this change aligns with your workflow preferences.
429
430```json
431{
432  "context": "vim_mode == normal || vim_mode == visual",
433  "bindings": {
434    "s": "vim::PushSneak",
435    "shift-s": "vim::PushSneakBackward"
436  }
437}
438```
439
440The [vim-exchange](https://github.com/tommcdo/vim-exchange) feature does not have a default binding for visual mode, as the `shift-x` binding conflicts with the default `shift-x` binding for visual mode (`vim::VisualDeleteLine`). To assign the default vim-exchange binding, add the following keybinding to your keymap:
441
442```json
443{
444  "context": "vim_mode == visual",
445  "bindings": {
446    "shift-x": "vim::Exchange"
447  }
448}
449```
450
451### Restoring common text editing keybindings
452
453If you're using vim mode on Linux or Windows, you may find it overrides keybindings you can't live without: `ctrl+v` to paste, `ctrl+f` to search, etc. You can restore them by copying this data into your keymap:
454
455```json
456{
457  "context": "Editor && !menu",
458  "bindings": {
459    "ctrl-c": "editor::Copy",          // vim default: return to normal mode
460    "ctrl-x": "editor::Cut",           // vim default: decrement
461    "ctrl-v": "editor::Paste",         // vim default: visual block mode
462    "ctrl-y": "editor::Undo",          // vim default: line up
463    "ctrl-f": "buffer_search::Deploy", // vim default: page down
464    "ctrl-o": "workspace::Open",       // vim default: go back
465    "ctrl-a": "editor::SelectAll",     // vim default: increment
466  }
467},
468```
469
470## Changing vim mode settings
471
472You can change the following settings to modify vim mode's behavior:
473
474| Property                     | Description                                                                                                                                                                                   | Default Value |
475| ---------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
476| default_mode                 | The default mode to start in. One of "normal", "insert", "replace", "visual", "visual_line", "visual_block", "helix_normal".                                                                  | "normal"      |
477| use_system_clipboard         | Determines how system clipboard is used:<br><ul><li>"always": use for all operations</li><li>"never": only use when explicitly specified</li><li>"on_yank": use for yank operations</li></ul> | "always"      |
478| use_multiline_find           | If `true`, `f` and `t` motions extend across multiple lines.                                                                                                                                  | false         |
479| use_smartcase_find           | If `true`, `f` and `t` motions are case-insensitive when the target letter is lowercase.                                                                                                      | false         |
480| toggle_relative_line_numbers | If `true`, line numbers are relative in normal mode and absolute in insert mode, giving you the best of both options.                                                                         | false         |
481| custom_digraphs              | An object that allows you to add custom digraphs. Read below for an example.                                                                                                                  | {}            |
482| highlight_on_yank_duration   | The duration of the highlight animation(in ms). Set to `0` to disable                                                                                                                         | 200           |
483
484Here's an example of adding a digraph for the zombie emoji. This allows you to type `ctrl-k f z` to insert a zombie emoji. You can add as many digraphs as you like.
485
486```json
487{
488  "vim": {
489    "custom_digraphs": {
490      "fz": "🧟‍♀️"
491    }
492  }
493}
494```
495
496Here's an example of these settings changed:
497
498```json
499{
500  "vim": {
501    "use_system_clipboard": "never",
502    "use_multiline_find": true,
503    "use_smartcase_find": true,
504    "toggle_relative_line_numbers": true,
505    "highlight_on_yank_duration": 50,
506    "custom_digraphs": {
507      "fz": "🧟‍♀️"
508    }
509  }
510}
511```
512
513## Useful core Zed settings for vim mode
514
515Here are a few general Zed settings that can help you fine-tune your Vim experience:
516
517| Property                | Description                                                                                                                                                   | Default Value        |
518| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- |
519| cursor_blink            | If `true`, the cursor blinks.                                                                                                                                 | `true`               |
520| relative_line_numbers   | If `true`, line numbers in the left gutter are relative to the cursor.                                                                                        | `false`              |
521| scrollbar               | Object that controls the scrollbar display. Set to `{ "show": "never" }` to hide the scroll bar.                                                              | `{ "show": "auto" }` |
522| scroll_beyond_last_line | If set to `"one_page"`, allows scrolling up to one page beyond the last line. Set to `"off"` to prevent this behavior.                                        | `"one_page"`         |
523| vertical_scroll_margin  | The number of lines to keep above or below the cursor when scrolling. Set to `0` to allow the cursor to go up to the edges of the screen vertically.          | `3`                  |
524| gutter.line_numbers     | Controls the display of line numbers in the gutter. Set the `"line_numbers"` property to `false` to hide line numbers.                                        | `true`               |
525| command_aliases         | Object that defines aliases for commands in the command palette. You can use it to define shortcut names for commands you use often. Read below for examples. | `{}`                 |
526
527Here's an example of these settings changed:
528
529```json
530{
531  // Disable cursor blink
532  "cursor_blink": false,
533  // Use relative line numbers
534  "relative_line_numbers": true,
535  // Hide the scroll bar
536  "scrollbar": { "show": "never" },
537  // Prevent the buffer from scrolling beyond the last line
538  "scroll_beyond_last_line": "off",
539  // Allow the cursor to reach the edges of the screen
540  "vertical_scroll_margin": 0,
541  "gutter": {
542    // Disable line numbers completely:
543    "line_numbers": false
544  },
545  "command_aliases": {
546    "W": "w",
547    "Wq": "wq",
548    "Q": "q"
549  }
550}
551```
552
553The `command_aliases` property is a single object that maps keys or key sequences to vim mode commands. The example above defines multiple aliases: `W` for `w`, `Wq` for `wq`, and `Q` for `q`.
554
555## Regex differences
556
557Zed uses a different regular expression engine from Vim. This means that you will have to use a different syntax in some cases. Here are the most common differences:
558
559- **Capture groups**: Vim uses `\(` and `\)` to represent capture groups, in Zed these are `(` and `)`. On the flip side, in Vim, `(` and `)` represent literal parentheses, but in Zed these must be escaped to `\(` and `\)`.
560- **Matches**: When replacing, Vim uses the backslash character followed by a number to represent a matched capture group. For example, `\1`. Zed uses the dollar sign instead. So, when in Vim you use `\0` to represent the entire match, in Zed the syntax is `$0` instead. Same for numbered capture groups: `\1` in Vim is `$1` in Zed.
561- **Global option**: By default, in Vim, regex searches only match the first occurrence on a line, and you append `/g` at the end of your query to find all matches. In Zed, regex searches are global by default.
562- **Case sensitivity**: Vim uses `/i` to indicate a case-insensitive search. In Zed you can either write `(?i)` at the start of the pattern or toggle case-sensitivity with the shortcut {#kb search::ToggleCaseSensitive}.
563
564> **Note**: To help with the transition, the command palette will fix parentheses and replace groups for you when you write a Vim-style substitute command, `:%s//`. So, Zed will convert `%s:/\(a\)(b)/\1/` into a search for "(a)\(b\)" and a replacement of "$1".
565
566For the full syntax supported by Zed's regex engine [see the regex crate documentation](https://docs.rs/regex/latest/regex/#syntax).