keys: don't use replace keys when defining new symbols

It seems that this is incompatible with a per-device mapping.
This commit is contained in:
Vincent Bernat 2014-06-11 17:11:55 +02:00
parent 712c1f3362
commit b31742b740

View file

@ -14,9 +14,9 @@ xkb_symbols "webcam" {
partial
xkb_symbols "x1" {
replace key <HOME> { [ Control_L, Control_L ] };
replace key <END> { [ Control_L, Control_L ] };
key <HOME> { [ Control_L, Control_L ] };
key <END> { [ Control_L, Control_L ] };
modifier_map Control { Control_L, <HOME>, <END> };
replace key <TLDE> { [ Insert, Insert ] };
replace key <ESC> { [ grave, asciitilde, dead_grave, dead_tilde ] };
key <TLDE> { [ Insert, Insert ] };
key <ESC> { [ grave, asciitilde, dead_grave, dead_tilde ] };
};