1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

docs(sudo): document key binding change

This commit is contained in:
Marc Cornellà 2021-12-29 16:26:35 +01:00
parent 8b231f2aa7
commit 8b53d04942
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -1,6 +1,6 @@
# sudo
Easily prefix your current or previous commands with `sudo` by pressing <kbd>esc</kbd> twice
Easily prefix your current or previous commands with `sudo` by pressing <kbd>esc</kbd> twice.
To use it, add `sudo` to the plugins array in your zshrc file:
@ -43,3 +43,17 @@ $ sudo rm some-system-file.txt
Password:
$
```
## Key binding
By default, the `sudo` plugin uses <kbd>Esc</kbd><kbd>Esc</kbd> as the trigger.
If you want to change it, you can use the `bindkey` command to bind it to a different key:
```sh
bindkey -M emacs '<seq>' sudo-command-line
bindkey -M vicmd '<seq>' sudo-command-line
bindkey -M viins '<seq>' sudo-command-line
```
where `<seq>` is the sequence you want to use. You can find the keyboard sequence
by running `cat` and pressing the keyboard combination you want to use.