diff options
author | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
---|---|---|
committer | vin <git@vineetk.net> | 2023-10-15 19:46:33 -0400 |
commit | 7ed78a843d4a90ae8adc69bf3c3dbf573a379f75 (patch) | |
tree | 420f8e7829b46bf43b5dbafc46f0a72f644e9588 /users/sigul/sigul.h | |
parent | 392a85e1f6fefd549cd52945ab1447a2d6901484 (diff) |
remove userspace declarations
Diffstat (limited to 'users/sigul/sigul.h')
-rw-r--r-- | users/sigul/sigul.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/users/sigul/sigul.h b/users/sigul/sigul.h deleted file mode 100644 index 8f806017cc..0000000000 --- a/users/sigul/sigul.h +++ /dev/null @@ -1,42 +0,0 @@ -#pragma once - -#include "quantum.h" - -enum userspace_layers { - _QWERTY, - _LOWER, //symbols - _RAISE, //numbers - _ADJUST, //system - _NUMPAD, - _FN, - _MOUSE -}; - -enum userspace_custom_keycodes { - QWERTY = SAFE_RANGE, - // custom keycodes for an Italian ANSI layout with accented vowels - IT_CMLS, // IT_COMM and IT_LABK when combined with shift - IT_DTMR, // IT_DOT and IT_RABK when combined with shift - IT_SLQS, // IT_SLSH and IT_QUES when combined with shift - IT_APDQ, // IT_APO and IT_DQUO when combined with shift - IT_SCCL, // IT_SMCL and IT_COLN when combined with shift - SECRET0, - SECRET1, - SECRET2, - SECRET3, - SECRET4, - SECRET5, - NEW_SAFE_RANGE // start new keyboard-level declarations with NEW_SAFE_RANGE -}; - -// Defining Layer Keycodes -#define QWERTY DF(_QWERTY) -// For LOWER and RAISE I use TT instead of MO to be able to lock those layer tapping three times the key (TAPPING_TOGGLE 3 has been added in sigul.h) -#define LOWER TT(_LOWER) -#define RAISE TT(_RAISE) -#define NUMPAD TG(_NUMPAD) -#define FN MO(_FN) -#define TABFN LT(_FN, KC_TAB) -#define ESCFN LT(_FN, KC_ESC) -#define MS_B LT(_MOUSE, IT_B) - |