fix: restore R mapping (to L)
This commit is contained in:
parent
b81af2dace
commit
00362b9325
@ -4,3 +4,4 @@
|
|||||||
|
|
||||||
Remap for the bepo layout in Lua, inspired from https://github.com/michamos/vim-bepo
|
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)
|
||||||
|
@ -43,7 +43,8 @@
|
|||||||
;; {HJKL} devient [CTSR]
|
;; {HJKL} devient [CTSR]
|
||||||
(map-all :T :J)
|
(map-all :T :J)
|
||||||
(map-all :S :K)
|
(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'
|
;; on préserve les variantes avec 'g'
|
||||||
(map-all :gt :gj)
|
(map-all :gt :gj)
|
||||||
|
@ -22,6 +22,7 @@ local function mapping_setup()
|
|||||||
map_all("C", "H")
|
map_all("C", "H")
|
||||||
map_all("T", "J")
|
map_all("T", "J")
|
||||||
map_all("S", "K")
|
map_all("S", "K")
|
||||||
|
map_all("R", "L")
|
||||||
map_all("gt", "gj")
|
map_all("gt", "gj")
|
||||||
map_all("gs", "gk")
|
map_all("gs", "gk")
|
||||||
map_all("zs", "zk")
|
map_all("zs", "zk")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user