mirror of
https://github.com/Lissy93/dotfiles.git
synced 2024-11-25 08:43:26 +01:00
14 lines
403 B
Bash
14 lines
403 B
Bash
|
# Mimic Tim Pope’s Vim surround plugin
|
|||
|
# When in normal mode, use:
|
|||
|
# - cs (change surrounding)
|
|||
|
# - ds (delete surrounding)
|
|||
|
# - ys (add surrounding)
|
|||
|
|
|||
|
autoload -Uz surround
|
|||
|
zle -N delete-surround surround
|
|||
|
zle -N add-surround surround
|
|||
|
zle -N change-surround surround
|
|||
|
bindkey -M vicmd cs change-surround
|
|||
|
bindkey -M vicmd ds delete-surround
|
|||
|
bindkey -M vicmd ys add-surround
|
|||
|
bindkey -M visual S add-surround
|