summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorFredric Silberberg <frsilb@microsoft.com>2017-06-01 02:57:38 +0200
committerFredric Silberberg <frsilb@microsoft.com>2017-06-01 02:57:38 +0200
commitcfaf34daec85e73fb878578ab86661a5b61d29b5 (patch)
tree9e4f9269266ac95de889e1f93b8cddddf0eb089b /keyboards
parentaa1b1c575602d934cf35c90128504e0f985cfc56 (diff)
downloadqmk_firmware-cfaf34daec85e73fb878578ab86661a5b61d29b5.tar.gz
qmk_firmware-cfaf34daec85e73fb878578ab86661a5b61d29b5.tar.xz
Updated readme
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/ergodox/keymaps/333fred/README.md18
-rw-r--r--keyboards/ergodox/keymaps/333fred/keymap.c2
2 files changed, 13 insertions, 7 deletions
diff --git a/keyboards/ergodox/keymaps/333fred/README.md b/keyboards/ergodox/keymaps/333fred/README.md
index 7d40f92c5..af8042d85 100644
--- a/keyboards/ergodox/keymaps/333fred/README.md
+++ b/keyboards/ergodox/keymaps/333fred/README.md
@@ -21,7 +21,8 @@
| | | Del | |OSL(2)| | |
`--------------------' `----------------------'
```
-
+* Double-click `;` to get a `:`
+* Press-and-hold `f` to go to the movement layer
### Keymap 1: Code Layer
```
@@ -37,13 +38,14 @@
| | | | | | | | | | | |
`----------------------------------' `----------------------------------'
,-------------. ,---------------.
- | | | | Test | DTest |
+ |Format| | | Test | DTest |
,------|------|------| |------+--------+------.
| | |Refact| | | | |
| | |------| |------| | |
| | | | | | | |
`--------------------' `----------------------'
```
+* Format - Visual Studio Format. Sends `CTRL + K, CTRL + D`
* Refact - Visual Studio Refactor. Sends `CTRL + R, R`
* Test - Visual Studio Run Test. Sends `CTRL + R, T`
* DTest - Visual Studio Debug Test. Sends `CTRL + R, CTRL + T`
@@ -64,11 +66,12 @@
,-------------. ,-------------.
| | Caps | | | |
,------|------|------| |------+------+------.
- | | | | | | | |
+ | | |APscr | | | | |
| | |------| |------| | |
| | | PScr | | | | |
`--------------------' `--------------------'
```
+* APscr - Take a printscreen of the current app. Sends `Alt + Print Screen`
### Keymap 3: Media and Mouse Keys
```
@@ -99,9 +102,9 @@
|--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------|
| | | | | | | | | | | | | | | |
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
-| | | |LShift| | |------| |------| Left | Down | Up | Right| | |
+| |DLeft |DRight|LShift| | |------| |------| Left | Down | Up | Right| | |
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
-| | | | | | | | | | | | | | | |
+| |KOpen |KType | | | | | | | | | | | | |
`--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------'
| | | | | | | | | | | |
`----------------------------------' `----------------------------------'
@@ -113,4 +116,7 @@
| | | | | | | |
`--------------------' `--------------------'
```
- \ No newline at end of file
+* DLeft - Move to the left Desktop. Sends `Ctrl + Win + Left Arrow`
+* DRight - Move to the right Desktop. Sends `Ctrl + Win + Right Arrow`
+* KOpen - Opens KeePass. Sends `Ctrl + Alt + k`
+* KType - Autotypes KeePass password. Sends `Ctrl + Alt + a`
diff --git a/keyboards/ergodox/keymaps/333fred/keymap.c b/keyboards/ergodox/keymaps/333fred/keymap.c
index a63c9704f..070ad1f72 100644
--- a/keyboards/ergodox/keymaps/333fred/keymap.c
+++ b/keyboards/ergodox/keymaps/333fred/keymap.c
@@ -289,7 +289,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
return MACRO(D(LCTL), D(LGUI), T(RIGHT), U(LGUI), U(LCTL), END);
}
break;
- case PSCREEN_APP;
+ case PSCREEN_APP:
if (record->event.pressed) {
return MACRO(D(LALT), T(PSCR), U(LALT));
}