mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-16 02:40:08 +00:00
feat(vi-mode): copy to clipboard when using vi-change*
and vi-yank*
widgets (#11861)
This commit is contained in:
parent
fea4584ceb
commit
df80a2da54
2 changed files with 15 additions and 2 deletions
|
@ -144,11 +144,17 @@ NOTE: this used to be bound to `v`. That is now the default (`visual-mode`).
|
||||||
- `c{motion}` : Delete {motion} text and start insert
|
- `c{motion}` : Delete {motion} text and start insert
|
||||||
- `cc` : Delete line and start insert
|
- `cc` : Delete line and start insert
|
||||||
- `C` : Delete to the end of the line and start insert
|
- `C` : Delete to the end of the line and start insert
|
||||||
|
- `P` : Insert the contents of the clipboard before the cursor
|
||||||
|
- `p` : Insert the contents of the clipboard after the cursor
|
||||||
- `r{char}` : Replace the character under the cursor with {char}
|
- `r{char}` : Replace the character under the cursor with {char}
|
||||||
- `R` : Enter replace mode: Each character replaces existing one
|
- `R` : Enter replace mode: Each character replaces existing one
|
||||||
- `x` : Delete `count` characters under and after the cursor
|
- `x` : Delete `count` characters under and after the cursor
|
||||||
- `X` : Delete `count` characters before the cursor
|
- `X` : Delete `count` characters before the cursor
|
||||||
|
|
||||||
|
NOTE: delete/kill commands (`dd`, `D`, `c{motion}`, `C`, `x`,`X`) and yank commands
|
||||||
|
(`y`, `Y`) will copy to the clipboard. Contents can then be put back using paste commands
|
||||||
|
(`P`, `p`).
|
||||||
|
|
||||||
## Known issues
|
## Known issues
|
||||||
|
|
||||||
### Low `$KEYTIMEOUT`
|
### Low `$KEYTIMEOUT`
|
||||||
|
|
|
@ -147,8 +147,15 @@ function wrap_clipboard_widgets() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
wrap_clipboard_widgets copy vi-yank vi-yank-eol vi-backward-kill-word vi-change-whole-line vi-delete vi-delete-char
|
wrap_clipboard_widgets copy \
|
||||||
wrap_clipboard_widgets paste vi-put-{before,after}
|
vi-yank vi-yank-eol vi-yank-whole-line \
|
||||||
|
vi-change vi-change-eol vi-change-whole-line \
|
||||||
|
vi-kill-line vi-kill-eol vi-backward-kill-word \
|
||||||
|
vi-delete vi-delete-char vi-backward-delete-char
|
||||||
|
|
||||||
|
wrap_clipboard_widgets paste \
|
||||||
|
vi-put-{before,after}
|
||||||
|
|
||||||
unfunction wrap_clipboard_widgets
|
unfunction wrap_clipboard_widgets
|
||||||
|
|
||||||
# if mode indicator wasn't setup by theme, define default, we'll leave INSERT_MODE_INDICATOR empty by default
|
# if mode indicator wasn't setup by theme, define default, we'll leave INSERT_MODE_INDICATOR empty by default
|
||||||
|
|
Loading…
Reference in a new issue