AutoYADM commit: 2025-05-27 20:29:09

This commit is contained in:
Daniel Fichtinger 2025-05-27 20:29:09 -04:00
parent d29ab1d35e
commit fb8166f496

View file

@ -82,19 +82,24 @@ define-command surround-replace %{
}
}
map global surround-add ( ':surround-add-pair ( )<ret>' -docstring 'surround with parenthesis'
map global surround-add ) ':surround-add-pair ( )<ret>' -docstring 'surround with parenthesis'
map global surround-add [ ':surround-add-pair [ ]<ret>' -docstring 'surround with brackets'
map global surround-add ] ':surround-add-pair [ ]<ret>' -docstring 'surround with brackets'
map global surround-add { ':surround-add-pair { }<ret>' -docstring 'surround with braces'
map global surround-add } ':surround-add-pair { }<ret>' -docstring 'surround with braces'
map global surround-add < ':surround-add-pair <lt> <gt><ret>' -docstring 'surround with angles'
map global surround-add > ':surround-add-pair <lt> <gt><ret>' -docstring 'surround with angles'
map global surround-add "'" ":surround-add-pair ""'"" ""'""<ret>" -docstring 'surround with quotes'
map global surround-add '"' ":surround-add-pair '""' '""'<ret>" -docstring 'surround with double quotes'
map global surround-add * ':surround-add-pair * *<ret>' -docstring 'surround with asteriks'
map global surround-add _ ':surround-add-pair _ _<ret>' -docstring 'surround with undescores'
map global surround-add s ':surround-add<ret>' -docstring 'surround custom character'
map global surround-add ( ':surround-add-pair ( )<ret>' -docstring 'surround with parenthesis'
map global surround-add ) ':surround-add-pair ( )<ret>' -docstring 'surround with parenthesis'
map global surround-add [ ':surround-add-pair [ ]<ret>' -docstring 'surround with brackets'
map global surround-add ] ':surround-add-pair [ ]<ret>' -docstring 'surround with brackets'
map global surround-add { ':surround-add-pair { }<ret>' -docstring 'surround with braces'
map global surround-add } ':surround-add-pair { }<ret>' -docstring 'surround with braces'
map global surround-add < ':surround-add-pair <lt> <gt><ret>' -docstring 'surround with angles'
map global surround-add > ':surround-add-pair <lt> <gt><ret>' -docstring 'surround with angles'
map global surround-add "'" ":surround-add-pair ""'"" ""'""<ret>" -docstring 'surround with single quotes'
map global surround-add q ":surround-add-pair ""'"" ""'""<ret>" -docstring 'surround with single quotes'
map global surround-add '"' ":surround-add-pair '""' '""'<ret>" -docstring 'surround with double quotes'
map global surround-add Q ":surround-add-pair '""' '""'<ret>" -docstring 'surround with double quotes'
map global surround-add * ':surround-add-pair * *<ret>' -docstring 'surround with asteriks'
map global surround-add _ ':surround-add-pair _ _<ret>' -docstring 'surround with undescores'
map global surround-add ` ':surround-add-pair ` `<ret>' -docstring 'surround with backticks'
map global surround-add | ':surround-add-pair | |<ret>' -docstring 'surround with pipes'
map global surround-add $ ':surround-add-pair $ $<ret>' -docstring 'surround with dollars'
map global surround-add s ':surround-add<ret>' -docstring 'surround custom character'
map -docstring 'surround' global normal k ': enter-user-mode surround<ret>'
map -docstring 'add surrounding' global surround s ': enter-user-mode surround-add<ret>'