diff options
author | Drashna Jaelre <drashna@live.com> | 2019-09-21 11:22:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-21 11:22:27 -0700 |
commit | f069e9fc09859baf03d940b6db47e95c50a24936 (patch) | |
tree | 429cd294d22c0a9af6965af68f047e9482fc0cef /.vscode | |
parent | 63a0b1241d204873cd5156a959e913c602b0c386 (diff) | |
download | qmk_firmware-f069e9fc09859baf03d940b6db47e95c50a24936.tar.gz qmk_firmware-f069e9fc09859baf03d940b6db47e95c50a24936.zip |
Generalize Tap Dance Layer functions (#6629)
* made tapdance dual_role general
* updated original dual_role functionality
* added toggling layer example
* Fix dual role and add alias
* Update docs about new layer tap dances
* Fix up based on feedback
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/settings.json | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index ba5b56aa4..e5089a55b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json | |||
@@ -8,10 +8,12 @@ | |||
8 | "**/*.hex": true | 8 | "**/*.hex": true |
9 | }, | 9 | }, |
10 | "files.associations": { | 10 | "files.associations": { |
11 | "*.h": "c", | 11 | "*.h": "c", |
12 | "*.c": "c", | 12 | "*.c": "c", |
13 | "*.cpp": "cpp", | 13 | "*.cpp": "cpp", |
14 | "*.hpp": "cpp", | 14 | "*.hpp": "cpp", |
15 | "xstddef": "c" | 15 | "xstddef": "c", |
16 | "type_traits": "c", | ||
17 | "utility": "c" | ||
16 | } | 18 | } |
17 | } | 19 | } |