diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-06-27 03:16:42 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-06-27 03:17:30 +0200 |
commit | caf4378700b255998ef269a067187f918407785c (patch) | |
tree | ca93bf09fa22b17b190899912d383edfaa9059af | |
parent | 9ea43a7ad7dd985958988687807c88db69c253c7 (diff) |
wibble
-rw-r--r-- | src/keymap.h | 2 | ||||
-rw-r--r-- | src/model01.ino | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/keymap.h b/src/keymap.h index c58cbea..447a4a4 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -19,7 +19,6 @@ #pragma once -#include "Macros.h" /* Layers */ enum { @@ -34,6 +33,7 @@ enum { #define Key_Plus LSHIFT(Key_Equals) #define Key_Underscore LSHIFT(Key_Minus) + /* Keymaps */ KEYMAPS( [DVORAK] = KEYMAP_STACKED( diff --git a/src/model01.ino b/src/model01.ino index 1a65c5d..61f0871 100644 --- a/src/model01.ino +++ b/src/model01.ino @@ -27,15 +27,13 @@ #include <Kaleidoscope-LEDControl.h> #include <Kaleidoscope-LED-ActiveModColor.h> #include <Kaleidoscope-LED-Palette-Theme.h> -#include <Kaleidoscope-OneShot.h> #include <Kaleidoscope-MouseKeys.h> -#include <Kaleidoscope-Unicode.h> +#include <Kaleidoscope-OneShot.h> #include "Macros.h" #include "TapDance.h" #include "keymap.h" - KALEIDOSCOPE_INIT_PLUGINS( EEPROMSettings , TapDance @@ -74,3 +72,5 @@ void loop() { cancelOneShot = false; } } + +/* vim: set filetype=cpp : */ |