AutoYADM commit: 2025-05-30 15:35:09

This commit is contained in:
Daniel Fichtinger 2025-05-30 15:35:09 -04:00
parent 9a4b67daaf
commit 2261a4537a
2 changed files with 14 additions and 2 deletions

View file

@ -1,4 +1,14 @@
map global insert <c-a> <home>
map global insert <c-e> <end>
map global insert <c-.> <a-;><gt>
map global insert <c-,> <a-;><lt>
# indentation
map global insert <c-.> <a-semicolon><gt>
map global insert <c-,> <a-semicolon><lt>
# autopairs
define-command -hidden insert-no-hook %{
execute-keys '<a-;>\i'
echo test
execute-keys '<esc>'
}
map global insert <a-\> '<a-;>: insert-no-hook<ret>'
map global insert <a-/> '<a-;>: insert-no-hook<ret>'

View file

@ -0,0 +1,2 @@
declare-user-mode paragraph
declare-option -hidden str paragraph_select '<a-a>pj[p'