AutoYADM commit: 2025-05-13 00:40:09

This commit is contained in:
Daniel Fichtinger 2025-05-13 00:40:09 -04:00
parent dbbd98c78c
commit 3a00aaeae6

View file

@ -60,14 +60,23 @@ bundle kakoune-buffers https://github.com/Delapouite/kakoune-buffers %{
} }
bundle vertical-selection https://github.com/occivink/kakoune-vertical-selection %{ bundle vertical-selection https://github.com/occivink/kakoune-vertical-selection %{
declare-user-mode vertical-selection declare-user-mode vertical-selection
map -docstring "select alike down" global vertical-selection n ': vertical-selection-down<ret>' map -docstring "select alike down" global vertical-selection n ': vertical-selection-down<ret>'
map -docstring "select alike up" global vertical-selection e ': vertical-selection-up<ret>' map -docstring "select alike up" global vertical-selection e ': vertical-selection-up<ret>'
map -docstring "select alike up & down" global vertical-selection v ': vertical-selection-up-and-down<ret>' map -docstring "select alike up & down" global vertical-selection v ': vertical-selection-up-and-down<ret>'
map global user v ": enter-user-mode vertical-selection<ret>" map global user v ": enter-user-mode vertical-selection<ret>"
} }
bundle kakoune-text-objects https://github.com/Delapouite/kakoune-text-objects %{ bundle kakoune-text-objects https://github.com/Delapouite/kakoune-text-objects %{
map global user s ': enter-user-mode selectors<ret>' -docstring 'selectors' map global user s ': enter-user-mode selectors<ret>' -docstring 'selectors'
} }
bundle smarttab.kak https://github.com/andreyorst/smarttab.kak %{
require-module smarttab
set-option global softtabstop 2
hook global BufCreate .* %{
editorconfig-load
autoconfigtab
}
}