Keyd : Rework numbers layer for spreadsheet use (numpad-like).
This commit is contained in:
parent
7710e7e148
commit
c2e573441e
|
@ -4,10 +4,13 @@
|
||||||
{
|
{
|
||||||
"c": "#8ec07c"
|
"c": "#8ec07c"
|
||||||
},
|
},
|
||||||
"f13",
|
"=",
|
||||||
"f14",
|
"/",
|
||||||
"f15",
|
"*",
|
||||||
"f16",
|
"-",
|
||||||
|
{
|
||||||
|
"c": "#cccccc"
|
||||||
|
},
|
||||||
"f17",
|
"f17",
|
||||||
"f18",
|
"f18",
|
||||||
"f19",
|
"f19",
|
||||||
|
@ -17,7 +20,6 @@
|
||||||
"f23",
|
"f23",
|
||||||
"f24",
|
"f24",
|
||||||
{
|
{
|
||||||
"c": "#cccccc",
|
|
||||||
"w": 2
|
"w": 2
|
||||||
},
|
},
|
||||||
"Backspace"
|
"Backspace"
|
||||||
|
@ -30,13 +32,13 @@
|
||||||
{
|
{
|
||||||
"c": "#8ec07c"
|
"c": "#8ec07c"
|
||||||
},
|
},
|
||||||
"1",
|
"7",
|
||||||
"2",
|
"8",
|
||||||
"3",
|
"9",
|
||||||
|
"+",
|
||||||
{
|
{
|
||||||
"c": "#cccccc"
|
"c": "#cccccc"
|
||||||
},
|
},
|
||||||
"R",
|
|
||||||
"T",
|
"T",
|
||||||
"Y",
|
"Y",
|
||||||
"U",
|
"U",
|
||||||
|
@ -61,10 +63,10 @@
|
||||||
"4",
|
"4",
|
||||||
"5",
|
"5",
|
||||||
"6",
|
"6",
|
||||||
|
"Enter",
|
||||||
{
|
{
|
||||||
"c": "#cccccc"
|
"c": "#cccccc"
|
||||||
},
|
},
|
||||||
"F",
|
|
||||||
"G",
|
"G",
|
||||||
"H",
|
"H",
|
||||||
"J",
|
"J",
|
||||||
|
@ -73,27 +75,23 @@
|
||||||
":\n;",
|
":\n;",
|
||||||
"\"\n'",
|
"\"\n'",
|
||||||
{
|
{
|
||||||
"c": "#8ec07c",
|
|
||||||
"w": 2.25
|
"w": 2.25
|
||||||
},
|
},
|
||||||
"NP Enter"
|
"Enter"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"c": "#cccccc",
|
"c": "#8ec07c",
|
||||||
"w": 2.25
|
"w": 2.25
|
||||||
},
|
},
|
||||||
"Shift",
|
"Backspace",
|
||||||
{
|
"1",
|
||||||
"c": "#8ec07c"
|
"2",
|
||||||
},
|
"3",
|
||||||
"7",
|
". (dot)",
|
||||||
"8",
|
|
||||||
"9",
|
|
||||||
{
|
{
|
||||||
"c": "#cccccc"
|
"c": "#cccccc"
|
||||||
},
|
},
|
||||||
"V",
|
|
||||||
"B",
|
"B",
|
||||||
"N",
|
"N",
|
||||||
"M",
|
"M",
|
||||||
|
|
|
@ -94,7 +94,7 @@ Tmux:<br>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Extra numbers</summary>
|
<summary>Extra numbers</summary>
|
||||||
<img src="https://i.imgur.com/PW5eGSF.png" />
|
<img src="https://i.imgur.com/89ERKd9.png" />
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
|
@ -61,29 +61,24 @@ in {
|
||||||
|
|
||||||
# Number inputs.
|
# Number inputs.
|
||||||
layer_number = {
|
layer_number = {
|
||||||
q = "1";
|
q = "7";
|
||||||
w = "2";
|
w = "8";
|
||||||
e = "3";
|
e = "9";
|
||||||
a = "4";
|
a = "4";
|
||||||
s = "5";
|
s = "5";
|
||||||
d = "6";
|
d = "6";
|
||||||
z = "7";
|
z = "1";
|
||||||
x = "8";
|
x = "2";
|
||||||
c = "9";
|
c = "3";
|
||||||
space = "0";
|
space = "0";
|
||||||
"1" = "f13";
|
"1" = "kpequal";
|
||||||
"2" = "f14";
|
"2" = "kpslash";
|
||||||
"3" = "f15";
|
"3" = "kpasterisk";
|
||||||
"4" = "f16";
|
"4" = "kpminus";
|
||||||
"5" = "f17";
|
f = "kpenter";
|
||||||
"6" = "f18";
|
r = "kpplus";
|
||||||
"7" = "f19";
|
v = "kpcomma";
|
||||||
"8" = "f20";
|
shift = "backspace";
|
||||||
"9" = "f21";
|
|
||||||
"0" = "f22";
|
|
||||||
"-" = "f23";
|
|
||||||
"=" = "f24";
|
|
||||||
enter = "kpenter";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue