Add command aliases (#14826)

Co-Authored-By: <tobbe@tlundberg.com>

Release Notes:

- Added `"command_aliases"` setting to let you abbreviate commands
This commit is contained in:
Conrad Irwin
2024-07-19 12:48:48 -06:00
committed by GitHub
co-authored by
parent b22718e643
commit 1dc4d4200f
5 changed files with 47 additions and 3 deletions
+5
View File
@@ -261,6 +261,11 @@ There are also a few Zed settings that you may also enjoy if you use vim mode:
"gutter": {
// disable line numbers completely:
"line_numbers": false
},
"command_aliases": {
"W": "w",
"Wq": "wq",
"Q": "q"
}
}
```