Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/LanguageMaps/Data/fi.csv
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ usbcode,normal,shifted,altgr,altgrshifted,deadkeys,bottomleft,topleft,bottomrigh
41,,,,,,,,,Esc,
42,,,,,,,,,Backspace,
43,,,,,,,,,Tab,
44, ,,,,,,,,Space,
44,,,,,,,,,Space,
45,+,?,\,,,,,,,
46,´,`,,,Normal shifted,,,,,
47,å,Å,,,,,Å,,,
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageMaps/Data/uk.csv
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ usbcode,normal,shifted,altgr,altgrshifted,deadkeys,bottomleft,topleft,topright,b
41,,,,,,,,,,Esc,
42,,,,,,,,,,Backspace,
43,,,,,,,,,,Tab,
44, ,,,,,,,,,Space,
44,,,,,,,,,,Space,
45,-,_,,,,,,,,,
46,=,+,,,,,,,,,
47,[,{,,,,,,,,,
Expand Down
3 changes: 2 additions & 1 deletion src/LanguageMaps/Data/us.csv
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ usbcode,normal,shifted,altgr,altgrshifted,deadkeys,bottomleft,topleft,topright,b
41,,,,,,,,,,Esc,
42,,,,,,,,,,Backspace,
43,,,,,,,,,,Tab,
44, ,,,,,,,,,Space,
44,,,,,,,,,,Space,
45,-,_,,,,,,,,,
46,=,+,,,,,,,,,
47,[,{,,,,,,,,,
48,],},,,,,,,,,
49,\,|,,,,,,,,,
50,??,??,,,,,,,,,
51,;,:,,,,,,,,,
52,',”,,,,,,,,,
Expand Down
5 changes: 5 additions & 0 deletions src/QMK/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ const SFT_T = (kc: keycode) => _MT(LSFT(kc));
const ALT_T = (kc: keycode) => _MT(LALT(kc));
const ALGR_T = (kc: keycode) => _MT(RALT(kc));
const GUI_T = (kc: keycode) => _MT(LGUI(kc));
const RCTL_T = (kc: keycode) => _MT(RCTL(kc));
const ALL_T = (kc: keycode) => _MT(HYPR(kc));
const LCAG_T = (kc: keycode) => _MT(LCAG(kc));
const MEH_T = (kc: keycode) => _MT(MEH(kc));
Expand Down Expand Up @@ -420,6 +421,9 @@ const functionExpansionAliases: { [k: string]: keyof typeof functionExpansions }

const functionNameAliases = {
S: LSFT,
LALT_T: ALT_T,
LCTL_T: CTL_T,
LGUI_T: GUI_T,
};

const functions = {
Expand All @@ -430,6 +434,7 @@ const functions = {
SFT_T,
ALT_T,
ALGR_T,
RCTL_T,
GUI_T,
ALL_T,
LCAG_T,
Expand Down