AutoYADM commit: 2025-05-27 19:28:07

This commit is contained in:
Daniel Fichtinger 2025-05-27 19:28:07 -04:00
parent 9525c9d29b
commit d29ab1d35e
2 changed files with 17 additions and 0 deletions

View file

@ -102,4 +102,17 @@ map -docstring 'delete surrounding' global surround d ':surround-delete<ret>'
map -docstring 'replace surrounding' global surround r ':surround-replace<ret>'
map -docstring 'select inside object' global surround i '<a-i>'
map -docstring 'select around object' global surround a '<a-a>'
map -docstring %{
select to next sequence of matching characters
} global surround k ': execute-keys m<ret>'
map -docstring %{
extend to next sequence of matching characters
} global surround K ': execute-keys M<ret>'
map -docstring %{
select to prev sequence of matching characters
} global surround <a-k> ': execute-keys <a-m><ret>'
map -docstring %{
extend to prev sequence of matching characters
} global surround <a-K> ': execute-keys <a-M><ret>'
~