This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/kak/keys.kak

69 lines
2.2 KiB
Plaintext
Raw Normal View History

2020-11-14 20:53:21 +01:00
# {{@@ header() @@}}
2021-02-13 20:12:10 +01:00
map global normal <F2> ': lsp-rename-prompt<ret>'
2020-11-14 20:53:21 +01:00
{%@@ for old, new, gdoc, vdoc in [
[ "h", key.left, "line begin", "scroll left" ],
[ "l", key.right, "line right", "scroll right" ],
[ "k", key.up, "buffer begin", "scroll up" ],
[ "j", key.down, "buffer end", "scroll down" ],
[ "i", key.insertMode, "first non blank", "" ],
[ "n", key.next, "", "" ],
[ "o", "h", "", "" ],
] @@%}
{%@@ set NEW, OLD = new.upper(), old.upper()@@%}
{%@@ if vdoc @@%}
map global view {{@@ old @@}} ''
map global view {{@@ new @@}} {{@@ old @@}} -docstring "{{@@ vdoc @@}}"
{%@@ endif @@%}
{%@@ if gdoc @@%}
map global goto {{@@ old @@}} ''
map global goto {{@@ new @@}} {{@@ old @@}} -docstring "{{@@ gdoc @@}}"
{%@@ endif @@%}
map global normal {{@@ new @@}} {{@@ old @@}}
map global normal {{@@ NEW @@}} {{@@ OLD @@}}
map global normal <a-{{@@ new @@}}> <a-{{@@ old @@}}>
map global normal <a-{{@@ NEW @@}}> <a-{{@@ OLD @@}}>
{%@@ endfor @@%}
{%@@ if key.layout == 'colemak' @@%}
map global normal k s
map global normal K S
map global normal <c-k> <a-s>
map global normal t e
2021-03-05 01:43:20 +01:00
map global normal T E
2020-11-14 20:53:21 +01:00
{%@@ endif @@%}
2020-12-06 01:26:01 +01:00
######################################################
# Emacs-like insert
######################################################
map global insert <c-b> "<a-;>h"
map global insert <c-f> "<a-;>l"
map global insert <a-b> "<a-;>b"
map global insert <a-f> "<a-;>w"
map global insert <c-a> "<a-;>gi"
2021-08-27 16:51:55 +02:00
map global insert <c-e> "<a-;>gh<a-;>gl<right>"
2020-12-06 01:26:01 +01:00
map global insert <c-w> "<a-;>b<a-;>d"
2020-12-14 02:34:55 +01:00
######################################################
# Other insert binds
######################################################
map global insert <a-k> "<esc>"
2022-02-07 21:54:54 +01:00
map global insert <c-t> "<esc>"
2021-04-18 19:56:27 +02:00
######################################################
# Objects
######################################################
map global object m %{c^[<lt>=|]{4\,}[^\n]*\n,^[<gt>=|]{4\,}[^\n]*\n<ret>} -docstring 'git conflict markers'
map global object M %{c^<lt>{4\,}[^\n]*\n,^<gt>{4\,}[^\n]*\n<ret>} -docstring 'git conflict'