rc: new bash alias and kakoune changes

This commit is contained in:
KK
2026-06-21 22:45:53 +02:00
parent b712c714cf
commit 50fcabcb3f
4 changed files with 21 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ set-option global makecmd 'bash build.sh'
map global user n :make-next-error<ret>
map global user p :make-previous-error<ret>
# Toggle line comments for the current selection/line.
map global user / ': comment-line<ret>'
# Kakoune does not have a Vim-style 'expandtab' option. Make a literal Tab key
# insert four spaces instead of a tab character while in insert mode.
map global insert <tab> '<space><space><space><space>'