Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
333fred committed Jun 1, 2017
1 parent aa1b1c5 commit cfaf34d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions keyboards/ergodox/keymaps/333fred/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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`
Expand All @@ -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
```
Expand Down Expand Up @@ -99,9 +102,9 @@
|--------+------+------+------+------+-------------| |------+------+------+------+------+------+--------|
| | | | | | | | | | | | | | | |
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
| | | |LShift| | |------| |------| Left | Down | Up | Right| | |
| |DLeft |DRight|LShift| | |------| |------| Left | Down | Up | Right| | |
|--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
| | | | | | | | | | | | | | | |
| |KOpen |KType | | | | | | | | | | | | |
`--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------'
| | | | | | | | | | | |
`----------------------------------' `----------------------------------'
Expand All @@ -113,4 +116,7 @@
| | | | | | | |
`--------------------' `--------------------'
```

* 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`
2 changes: 1 addition & 1 deletion keyboards/ergodox/keymaps/333fred/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit cfaf34d

Please sign in to comment.