AutoYADM commit: 2025-06-20 15:25:14

This commit is contained in:
Daniel Fichtinger 2025-06-20 15:25:14 -04:00
parent 3013e3ebe5
commit 106e09b862
3 changed files with 10 additions and 8 deletions

View file

@ -114,4 +114,6 @@ map global normal <a-c-s-h> "<a-c-s-i>"
map global normal <a-c-s-k> "<a-c-s-m>" map global normal <a-c-s-k> "<a-c-s-m>"
map global normal <a-c-s-j> "<a-c-s-n>" map global normal <a-c-s-j> "<a-c-s-n>"
map global normal <a-c-s-l> "<a-c-s-e>" map global normal <a-c-s-l> "<a-c-s-e>"
map global normal <a-c-c-b> "<a-c-c-q>"
map global normal <a-c-c-q> "<a-c-c-b>"

View file

@ -22,8 +22,8 @@ define-command -hidden extend-previous-hump %{
execute-keys <a-?>[A-Z][a-z]+|[A-Z]+|[a-z]+<ret><a-:><a-semicolon> execute-keys <a-?>[A-Z][a-z]+|[A-Z]+|[a-z]+<ret><a-:><a-semicolon>
} }
map global normal <c-b> ': select-previous-hump<ret>' -docstring 'select prev hump' map global normal <c-q> ': select-previous-hump<ret>' -docstring 'select prev hump'
map global normal <c-w> ': select-next-hump<ret>' -docstring 'select next hump' map global normal <c-w> ': select-next-hump<ret>' -docstring 'select next hump'
map global normal <c-B> ': extend-previous-hump<ret>' -docstring 'extend prev hump' map global normal <c-Q> ': extend-previous-hump<ret>' -docstring 'extend prev hump'
map global normal <c-W> ': extend-next-hump<ret>' -docstring 'extend next hump' map global normal <c-W> ': extend-next-hump<ret>' -docstring 'extend next hump'
map global normal <c-h> ': select-current-hump<ret>' -docstring 'select current hump' map global normal <c-h> ': select-current-hump<ret>' -docstring 'select current hump'

View file

@ -135,12 +135,12 @@ hook global WinCreate .* %{
# convenience mappings # convenience mappings
# quitting & saving # quitting & saving
map -docstring "quit" global user q ": q<ret>" # map -docstring "quit" global user q ": q<ret>"
map -docstring "quit" global normal <c-q> ": q<ret>" map -docstring "quit" global normal <c-b> ": q<ret>"
map -docstring "force quit" global user Q ": q!<ret>" # map -docstring "force quit" global user Q ": q!<ret>"
map -docstring "force quit" global normal <c-Q> ": q!<ret>" map -docstring "force quit" global normal <c-B> ": q!<ret>"
map -docstring "kill session" global normal <a-q> ':kill<ret>' map -docstring "kill session" global normal <a-b> ':kill<ret>'
map -docstring "force kill session" global normal <a-q> ':kill!<ret>' map -docstring "force kill session" global normal <a-b> ':kill!<ret>'
map -docstring "save" global normal <c-s> ": write<ret>" map -docstring "save" global normal <c-s> ": write<ret>"
map -docstring "save" global normal <c-S> ": write!<ret>" map -docstring "save" global normal <c-S> ": write!<ret>"