Files

396 lines
5.8 KiB
JavaScript

const data = {
name: "ASCII",
description: "ASCII Charset",
actions: {
32: {
id: "SPACE",
icon: "space_bar",
description: 'While SPACE is used for keymaps and chord, just a " " is used in chord outputs.\nThis action is unique in this way. Technically it is "printable", but it is not visible.\n'
},
33: {
id: "!",
title: "Exclamation Point"
},
34: {
id: '"',
title: "Double Quote"
},
35: {
id: "#",
title: "Hash Symbol"
},
36: {
id: "$",
title: "Dollar Sign"
},
37: {
id: "%",
title: "Percent"
},
38: {
id: "&",
title: "Ampersand"
},
39: {
id: "'",
title: "Single Quote"
},
40: {
id: "(",
title: "Opening Parenthesis"
},
41: {
id: ")",
title: "Closing Parenthesis"
},
42: {
id: "*",
title: "Asterisk"
},
43: {
id: "+",
title: "Plus"
},
44: {
id: ",",
title: "Comma"
},
45: {
id: "-",
title: "Minus"
},
46: {
id: ".",
title: "Period"
},
47: {
id: "/",
title: "Forward Slash"
},
48: {
id: "0",
title: "Zero"
},
49: {
id: "1",
title: "One"
},
50: {
id: "2",
title: "Two"
},
51: {
id: "3",
title: "Three"
},
52: {
id: "4",
title: "Four"
},
53: {
id: "5",
title: "Five"
},
54: {
id: "6",
title: "Six"
},
55: {
id: "7",
title: "Seven"
},
56: {
id: "8",
title: "Eight"
},
57: {
id: "9",
title: "Nine"
},
58: {
id: ":",
title: "Colon"
},
59: {
id: ";",
title: "Semicolon"
},
60: {
id: "<",
title: "Less Than"
},
61: {
id: "=",
title: "Equals"
},
62: {
id: ">",
title: "Greater Than"
},
63: {
id: "?",
title: "Question Mark"
},
64: {
id: "@",
title: "At Symbol"
},
65: {
id: "A",
title: "Uppercase A"
},
66: {
id: "B",
title: "Uppercase B"
},
67: {
id: "C",
title: "Uppercase C"
},
68: {
id: "D",
title: "Uppercase D"
},
69: {
id: "E",
title: "Uppercase E"
},
70: {
id: "F",
title: "Uppercase F"
},
71: {
id: "G",
title: "Uppercase G"
},
72: {
id: "H",
title: "Uppercase H"
},
73: {
id: "I",
title: "Uppercase I"
},
74: {
id: "J",
title: "Uppercase J"
},
75: {
id: "K",
title: "Uppercase K"
},
76: {
id: "L",
title: "Uppercase L"
},
77: {
id: "M",
title: "Uppercase M"
},
78: {
id: "N",
title: "Uppercase N"
},
79: {
id: "O",
title: "Uppercase O"
},
80: {
id: "P",
title: "Uppercase P"
},
81: {
id: "Q",
title: "Uppercase Q"
},
82: {
id: "R",
title: "Uppercase R"
},
83: {
id: "S",
title: "Uppercase S"
},
84: {
id: "T",
title: "Uppercase T"
},
85: {
id: "U",
title: "Uppercase U"
},
86: {
id: "V",
title: "Uppercase V"
},
87: {
id: "W",
title: "Uppercase W"
},
88: {
id: "X",
title: "Uppercase X"
},
89: {
id: "Y",
title: "Uppercase Y"
},
90: {
id: "Z",
title: "Uppercase Z"
},
91: {
id: "[",
title: "Left Bracket"
},
92: {
id: "\\",
title: "Backslash"
},
93: {
id: "]",
title: "Right Bracket"
},
94: {
id: "^",
title: "Caret"
},
95: {
id: "_",
title: "Underscore"
},
96: {
id: "`",
title: "Backtick"
},
97: {
id: "a",
title: "Lowercase a"
},
98: {
id: "b",
title: "Lowercase b"
},
99: {
id: "c",
title: "Lowercase c"
},
100: {
id: "d",
title: "Lowercase d"
},
101: {
id: "e",
title: "Lowercase e"
},
102: {
id: "f",
title: "Lowercase f"
},
103: {
id: "g",
title: "Lowercase g"
},
104: {
id: "h",
title: "Lowercase h"
},
105: {
id: "i",
title: "Lowercase i"
},
106: {
id: "j",
title: "Lowercase j"
},
107: {
id: "k",
title: "Lowercase k"
},
108: {
id: "l",
title: "Lowercase l"
},
109: {
id: "m",
title: "Lowercase m"
},
110: {
id: "n",
title: "Lowercase n"
},
111: {
id: "o",
title: "Lowercase o"
},
112: {
id: "p",
title: "Lowercase p"
},
113: {
id: "q",
title: "Lowercase q"
},
114: {
id: "r",
title: "Lowercase r"
},
115: {
id: "s",
title: "Lowercase s"
},
116: {
id: "t",
title: "Lowercase t"
},
117: {
id: "u",
title: "Lowercase u"
},
118: {
id: "v",
title: "Lowercase v"
},
119: {
id: "w",
title: "Lowercase w"
},
120: {
id: "x",
title: "Lowercase x"
},
121: {
id: "y",
title: "Lowercase y"
},
122: {
id: "z",
title: "Lowercase z"
},
123: {
id: "{",
title: "Left Curly Brace"
},
124: {
id: "|",
title: "Pipe"
},
125: {
id: "}",
title: "Right Curly Brace"
},
126: {
id: "~",
title: "Tilde"
},
127: {
id: "DEL",
title: "Delete",
icon: "delete_forever"
}
}
};
export {
data as default
};