A few layout mistakes.
This commit is contained in:
parent
6fff51cc5f
commit
31ea050cad
2 changed files with 10 additions and 10 deletions
12
layout.scm
12
layout.scm
|
@ -22,11 +22,11 @@
|
||||||
key-a key-s key-d key-f key-g key-backtick
|
key-a key-s key-d key-f key-g key-backtick
|
||||||
key-h key-j key-k key-l key-semicolon
|
key-h key-j key-k key-l key-semicolon
|
||||||
|
|
||||||
key-z key-x key-c key-v key-b mod-alt
|
key-z key-x key-c key-v key-b mod-ctrl
|
||||||
key-n key-m key-comma key-period key-slash
|
key-n key-m key-comma key-period key-slash
|
||||||
|
|
||||||
key-esc key-tab mod-super mod-shift key-backspace mod-ctrl
|
key-esc key-tab mod-super mod-shift key-backspace mod-alt
|
||||||
key-space fn key-quote key-right-bracket key-enter))
|
key-space fn key-quote key-left-bracket key-enter))
|
||||||
|
|
||||||
(vector-set!
|
(vector-set!
|
||||||
layers 1
|
layers 1
|
||||||
|
@ -39,11 +39,11 @@
|
||||||
key-page-down key-4 key-5 key-6 (combo mod-shift key-right-bracket)
|
key-page-down key-4 key-5 key-6 (combo mod-shift key-right-bracket)
|
||||||
|
|
||||||
key-dash key-equal (combo mod-shift key-9)
|
key-dash key-equal (combo mod-shift key-9)
|
||||||
(combo mod-shift key-0) (combo mod-shift key-7) mod-alt
|
(combo mod-shift key-0) (combo mod-shift key-7) mod-ctrl
|
||||||
key-backtick key-1 key-2 key-3 key-backslash
|
key-backtick key-1 key-2 key-3 key-backslash
|
||||||
|
|
||||||
set-layer-2 key-insert mod-super mod-shift key-backspace mod-ctrl
|
set-layer-2 key-insert mod-super mod-shift key-backspace mod-alt
|
||||||
key-space fn key-dash key-e key-0 key-right-bracket))
|
key-space fn key-e key-0 key-right-bracket))
|
||||||
|
|
||||||
(vector-set!
|
(vector-set!
|
||||||
layers 2 ; TODO
|
layers 2 ; TODO
|
||||||
|
|
8
test.rkt
8
test.rkt
|
@ -52,10 +52,10 @@
|
||||||
((2) . (0 ,key-e 0 0 0 0 0))
|
((2) . (0 ,key-e 0 0 0 0 0))
|
||||||
;; multiple normal keys
|
;; multiple normal keys
|
||||||
((2 3) . (0 ,key-e ,key-r 0 0 0 0))
|
((2 3) . (0 ,key-e ,key-r 0 0 0 0))
|
||||||
;; modifier keys (alt)
|
;; modifier keys (ctrl)
|
||||||
((27) . (4 0 0 0 0 0 0))
|
((27) . (1 0 0 0 0 0 0))
|
||||||
;; two modifiers (shift+alt) get ORed together
|
;; two modifiers (shift+ctrl) get ORed together
|
||||||
((27 36) . (6 0 0 0 0 0 0))
|
((27 36) . (3 0 0 0 0 0 0))
|
||||||
;; modifier (shift) and normal key
|
;; modifier (shift) and normal key
|
||||||
((36 4) . (2 ,key-t 0 0 0 0 0))
|
((36 4) . (2 ,key-t 0 0 0 0 0))
|
||||||
;; modifier and multiple normal keys
|
;; modifier and multiple normal keys
|
||||||
|
|
Loading…
Reference in a new issue