fix: restore R mapping (to L)

This commit is contained in:
Clément Joly 2022-05-07 20:11:23 +00:00
parent b81af2dace
commit 00362b9325
3 changed files with 4 additions and 1 deletions

View File

@ -4,3 +4,4 @@
Remap for the bepo layout in Lua, inspired from https://github.com/michamos/vim-bepo
It aims to be faster (takes only 0.6ms at startup on my machine, while vim-bepo requires 1.6ms)

View File

@ -43,7 +43,8 @@
;; {HJKL} devient [CTSR]
(map-all :T :J)
(map-all :S :K)
;; (map-all "R" "L") ;; {HJKL} devient [CTSR] -> free R
(map-all :R :L)
;; {HJKL} devient [CTSR] -> free R
;; ------
;; on préserve les variantes avec 'g'
(map-all :gt :gj)

View File

@ -22,6 +22,7 @@ local function mapping_setup()
map_all("C", "H")
map_all("T", "J")
map_all("S", "K")
map_all("R", "L")
map_all("gt", "gj")
map_all("gs", "gk")
map_all("zs", "zk")