[Keymap] Unicode and cursor sync - drashna keymap (#15328)

This commit is contained in:
Drashna Jaelre 2021-11-28 23:41:59 -08:00 committed by GitHub
parent 4ee33f1ffd
commit 5b5b36421a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 459 additions and 98 deletions

View file

@ -18,8 +18,18 @@ ifneq ($(strip $(NO_SECRETS)), yes)
endif
endif
CUSTOM_UNICODE_ENABLE ?= yes
ifeq ($(strip $(CUSTOM_UNICODE_ENABLE)), yes)
UNICODE_ENABLE = no
UNICODEMAP_ENABLE = no
UCIS_ENABLE = no
UNICODE_COMMON = yes
OPT_DEFS += -DCUSTOM_UNICODE_ENABLE
SRC += unicoooode.c
endif
CUSTOM_TAP_DANCE ?= yes
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
ifeq ($(strip $(CUSTOM_TAP_DANCE)), yes)
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
SRC += $(USER_PATH)/tap_dances.c
endif