Correct `KeyPair` references in CharShift docs

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/1087/head
Michael Richters 3 years ago
parent 15ee5573c1
commit c5bd030084
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -37,10 +37,10 @@ referenced by entries in the keymap. This is easiest to do by using the
void setup() {
Kaleidoscope.setup();
CS_KEYS(
kaleidoscope::plugin::KeyPair(Key_Comma, Key_Semicolon), // `,`/`;`
kaleidoscope::plugin::KeyPair(Key_Period, LSHIFT(Key_Semicolon)), // `.`/`:`
kaleidoscope::plugin::KeyPair(LSHIFT(Key_9), Key_LeftBracket), // `(`/`[`
kaleidoscope::plugin::KeyPair(LSHIFT(Key_Comma), LSHIFT(Key_LeftBracket)), // `<`/`{`
kaleidoscope::plugin::CharShift::KeyPair(Key_Comma, Key_Semicolon), // `,`/`;`
kaleidoscope::plugin::CharShift::KeyPair(Key_Period, LSHIFT(Key_Semicolon)), // `.`/`:`
kaleidoscope::plugin::CharShift::KeyPair(LSHIFT(Key_9), Key_LeftBracket), // `(`/`[`
kaleidoscope::plugin::CharShift::KeyPair(LSHIFT(Key_Comma), LSHIFT(Key_LeftBracket)), // `<`/`{`
);
}
```

Loading…
Cancel
Save