diff options
Diffstat (limited to 'quantum')
122 files changed, 2894 insertions, 5139 deletions
diff --git a/quantum/action.c b/quantum/action.c index abf9834d2f..79ea2b7635 100644 --- a/quantum/action.c +++ b/quantum/action.c @@ -16,12 +16,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */  #include <limits.h> -#ifdef DEBUG_ACTION -#    include "debug.h" -#else -#    include "nodebug.h" -#endif -  #include "host.h"  #include "keycode.h"  #include "keyboard.h" @@ -55,8 +49,8 @@ int retro_tapping_counter = 0;  #    include "process_auto_shift.h"  #endif -#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY -__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { +#ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY +__attribute__((weak)) bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {      return false;  }  #endif @@ -76,11 +70,11 @@ __attribute__((weak)) bool pre_process_record_quantum(keyrecord_t *record) {   * FIXME: Needs documentation.   */  void action_exec(keyevent_t event) { -    if (!IS_NOEVENT(event)) { -        dprint("\n---- action_exec: start -----\n"); -        dprint("EVENT: "); +    if (IS_EVENT(event)) { +        ac_dprintf("\n---- action_exec: start -----\n"); +        ac_dprintf("EVENT: ");          debug_event(event); -        dprintln(); +        ac_dprintf("\n");  #if defined(RETRO_TAPPING) || defined(RETRO_TAPPING_PER_KEY) || (defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT))          retro_tapping_counter++;  #endif @@ -93,7 +87,7 @@ void action_exec(keyevent_t event) {  #ifdef SWAP_HANDS_ENABLE      // Swap hands handles both keys and encoders, if ENCODER_MAP_ENABLE is defined. -    if (!IS_NOEVENT(event)) { +    if (IS_EVENT(event)) {          process_hand_swap(&event);      }  #endif @@ -131,8 +125,8 @@ void action_exec(keyevent_t event) {      if (IS_NOEVENT(record.event) || pre_process_record_quantum(&record)) {          process_record(&record);      } -    if (!IS_NOEVENT(record.event)) { -        dprint("processed: "); +    if (IS_EVENT(record.event)) { +        ac_dprintf("processed: ");          debug_record(record);          dprintln();      } @@ -280,15 +274,15 @@ void process_record_handler(keyrecord_t *record) {  #else      action_t action = store_or_get_action(record->event.pressed, record->event.key);  #endif -    dprint("ACTION: "); +    ac_dprintf("ACTION: ");      debug_action(action);  #ifndef NO_ACTION_LAYER -    dprint(" layer_state: "); +    ac_dprintf(" layer_state: ");      layer_debug(); -    dprint(" default_layer_state: "); +    ac_dprintf(" default_layer_state: ");      default_layer_debug();  #endif -    dprintln(); +    ac_dprintf("\n");      process_action(record, action);  } @@ -356,7 +350,12 @@ void process_action(keyrecord_t *record, action_t action) {  #ifndef NO_ACTION_ONESHOT      bool do_release_oneshot = false;      // notice we only clear the one shot layer if the pressed key is not a modifier. -    if (is_oneshot_layer_active() && event.pressed && (action.kind.id == ACT_USAGE || !IS_MOD(action.key.code)) +    if (is_oneshot_layer_active() && event.pressed && +        (action.kind.id == ACT_USAGE || !(IS_MOD(action.key.code) +#    ifndef NO_ACTION_TAPPING +                                          || (tap_count == 0 && (action.kind.id == ACT_LMODS_TAP || action.kind.id == ACT_RMODS_TAP)) +#    endif +                                              ))  #    ifdef SWAP_HANDS_ENABLE          && !(action.kind.id == ACT_SWAP_HANDS && action.swap.code == OP_SH_ONESHOT)  #    endif @@ -432,14 +431,14 @@ void process_action(keyrecord_t *record, action_t action) {                      } else {                          if (event.pressed) {                              if (tap_count == 0) { -                                dprint("MODS_TAP: Oneshot: 0\n"); +                                ac_dprintf("MODS_TAP: Oneshot: 0\n");                                  register_mods(mods | get_oneshot_mods());                              } else if (tap_count == 1) { -                                dprint("MODS_TAP: Oneshot: start\n"); +                                ac_dprintf("MODS_TAP: Oneshot: start\n");                                  set_oneshot_mods(mods | get_oneshot_mods());  #        if defined(ONESHOT_TAP_TOGGLE) && ONESHOT_TAP_TOGGLE > 1                              } else if (tap_count == ONESHOT_TAP_TOGGLE) { -                                dprint("MODS_TAP: Toggling oneshot"); +                                ac_dprintf("MODS_TAP: Toggling oneshot");                                  register_mods(mods);                                  clear_oneshot_mods();                                  set_oneshot_locked_mods(mods | get_oneshot_locked_mods()); @@ -484,29 +483,29 @@ void process_action(keyrecord_t *record, action_t action) {                  default:                      if (event.pressed) {                          if (tap_count > 0) { -#    if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) +#    if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY)                              if ( -#        ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY -                                !get_ignore_mod_tap_interrupt(get_event_keycode(record->event, false), record) && +#        ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY +                                get_hold_on_other_key_press(get_event_keycode(record->event, false), record) &&  #        endif                                  record->tap.interrupted) { -                                dprint("mods_tap: tap: cancel: add_mods\n"); +                                ac_dprintf("mods_tap: tap: cancel: add_mods\n");                                  // ad hoc: set 0 to cancel tap                                  record->tap.count = 0;                                  register_mods(mods);                              } else  #    endif                              { -                                dprint("MODS_TAP: Tap: register_code\n"); +                                ac_dprintf("MODS_TAP: Tap: register_code\n");                                  register_code(action.key.code);                              }                          } else { -                            dprint("MODS_TAP: No tap: add_mods\n"); +                            ac_dprintf("MODS_TAP: No tap: add_mods\n");                              register_mods(mods);                          }                      } else {                          if (tap_count > 0) { -                            dprint("MODS_TAP: Tap: unregister_code\n"); +                            ac_dprintf("MODS_TAP: Tap: unregister_code\n");                              if (action.layer_tap.code == KC_CAPS_LOCK) {                                  wait_ms(TAP_HOLD_CAPS_DELAY);                              } else { @@ -514,7 +513,7 @@ void process_action(keyrecord_t *record, action_t action) {                              }                              unregister_code(action.key.code);                          } else { -                            dprint("MODS_TAP: No tap: add_mods\n"); +                            ac_dprintf("MODS_TAP: No tap: add_mods\n");                              unregister_mods(mods);                          }                      } @@ -666,15 +665,15 @@ void process_action(keyrecord_t *record, action_t action) {                      /* tap key */                      if (event.pressed) {                          if (tap_count > 0) { -                            dprint("KEYMAP_TAP_KEY: Tap: register_code\n"); +                            ac_dprintf("KEYMAP_TAP_KEY: Tap: register_code\n");                              register_code(action.layer_tap.code);                          } else { -                            dprint("KEYMAP_TAP_KEY: No tap: On on press\n"); +                            ac_dprintf("KEYMAP_TAP_KEY: No tap: On on press\n");                              layer_on(action.layer_tap.val);                          }                      } else {                          if (tap_count > 0) { -                            dprint("KEYMAP_TAP_KEY: Tap: unregister_code\n"); +                            ac_dprintf("KEYMAP_TAP_KEY: Tap: unregister_code\n");                              if (action.layer_tap.code == KC_CAPS_LOCK) {                                  wait_ms(TAP_HOLD_CAPS_DELAY);                              } else { @@ -682,7 +681,7 @@ void process_action(keyrecord_t *record, action_t action) {                              }                              unregister_code(action.layer_tap.code);                          } else { -                            dprint("KEYMAP_TAP_KEY: No tap: Off on release\n"); +                            ac_dprintf("KEYMAP_TAP_KEY: No tap: Off on release\n");                              layer_off(action.layer_tap.val);                          }                      } @@ -882,32 +881,15 @@ __attribute__((weak)) void register_code(uint8_t code) {          // TODO: should push command_proc out of this block?          if (command_proc(code)) return; -#ifndef NO_ACTION_ONESHOT -/* TODO: remove -        if (oneshot_state.mods && !oneshot_state.disabled) { -            uint8_t tmp_mods = get_mods(); -            add_mods(oneshot_state.mods); - -            add_key(code); -            send_keyboard_report(); - -            set_mods(tmp_mods); -            send_keyboard_report(); -            oneshot_cancel(); -        } else -*/ -#endif -        { -            // Force a new key press if the key is already pressed -            // without this, keys with the same keycode, but different -            // modifiers will be reported incorrectly, see issue #1708 -            if (is_key_pressed(keyboard_report, code)) { -                del_key(code); -                send_keyboard_report(); -            } -            add_key(code); +        // Force a new key press if the key is already pressed +        // without this, keys with the same keycode, but different +        // modifiers will be reported incorrectly, see issue #1708 +        if (is_key_pressed(keyboard_report, code)) { +            del_key(code);              send_keyboard_report();          } +        add_key(code); +        send_keyboard_report();      } else if IS_MOD (code) {          add_mods(MOD_BIT(code));          send_keyboard_report(); @@ -1139,7 +1121,7 @@ bool is_tap_action(action_t action) {   * FIXME: Needs documentation.   */  void debug_event(keyevent_t event) { -    dprintf("%04X%c(%u)", (event.key.row << 8 | event.key.col), (event.pressed ? 'd' : 'u'), event.time); +    ac_dprintf("%04X%c(%u)", (event.key.row << 8 | event.key.col), (event.pressed ? 'd' : 'u'), event.time);  }  /** \brief Debug print (FIXME: Needs better description)   * @@ -1148,7 +1130,7 @@ void debug_event(keyevent_t event) {  void debug_record(keyrecord_t record) {      debug_event(record.event);  #ifndef NO_ACTION_TAPPING -    dprintf(":%u%c", record.tap.count, (record.tap.interrupted ? '-' : ' ')); +    ac_dprintf(":%u%c", record.tap.count, (record.tap.interrupted ? '-' : ' '));  #endif  } @@ -1159,41 +1141,41 @@ void debug_record(keyrecord_t record) {  void debug_action(action_t action) {      switch (action.kind.id) {          case ACT_LMODS: -            dprint("ACT_LMODS"); +            ac_dprintf("ACT_LMODS");              break;          case ACT_RMODS: -            dprint("ACT_RMODS"); +            ac_dprintf("ACT_RMODS");              break;          case ACT_LMODS_TAP: -            dprint("ACT_LMODS_TAP"); +            ac_dprintf("ACT_LMODS_TAP");              break;          case ACT_RMODS_TAP: -            dprint("ACT_RMODS_TAP"); +            ac_dprintf("ACT_RMODS_TAP");              break;          case ACT_USAGE: -            dprint("ACT_USAGE"); +            ac_dprintf("ACT_USAGE");              break;          case ACT_MOUSEKEY: -            dprint("ACT_MOUSEKEY"); +            ac_dprintf("ACT_MOUSEKEY");              break;          case ACT_LAYER: -            dprint("ACT_LAYER"); +            ac_dprintf("ACT_LAYER");              break;          case ACT_LAYER_MODS: -            dprint("ACT_LAYER_MODS"); +            ac_dprintf("ACT_LAYER_MODS");              break;          case ACT_LAYER_TAP: -            dprint("ACT_LAYER_TAP"); +            ac_dprintf("ACT_LAYER_TAP");              break;          case ACT_LAYER_TAP_EXT: -            dprint("ACT_LAYER_TAP_EXT"); +            ac_dprintf("ACT_LAYER_TAP_EXT");              break;          case ACT_SWAP_HANDS: -            dprint("ACT_SWAP_HANDS"); +            ac_dprintf("ACT_SWAP_HANDS");              break;          default: -            dprint("UNKNOWN"); +            ac_dprintf("UNKNOWN");              break;      } -    dprintf("[%X:%02X]", action.kind.param >> 8, action.kind.param & 0xff); +    ac_dprintf("[%X:%02X]", action.kind.param >> 8, action.kind.param & 0xff);  } diff --git a/quantum/action.h b/quantum/action.h index 2bc46429b2..e4d28ba947 100644 --- a/quantum/action.h +++ b/quantum/action.h @@ -112,7 +112,19 @@ bool is_tap_action(action_t action);  void process_record_tap_hint(keyrecord_t *record);  #endif -/* debug */ +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Helpers + +#ifdef ACTION_DEBUG +#    include "debug.h" +#    include "print.h" +#    define ac_dprintf(...) dprintf(__VA_ARGS__) +#else +#    define ac_dprintf(...) \ +        do {                \ +        } while (0) +#endif +  void debug_event(keyevent_t event);  void debug_record(keyrecord_t record);  void debug_action(action_t action); diff --git a/quantum/action_layer.c b/quantum/action_layer.c index 31cfdfe13a..74e8137920 100644 --- a/quantum/action_layer.c +++ b/quantum/action_layer.c @@ -1,12 +1,6 @@  #include <limits.h>  #include <stdint.h> -#ifdef DEBUG_ACTION -#    include "debug.h" -#else -#    include "nodebug.h" -#endif -  #include "keyboard.h"  #include "keymap.h"  #include "action.h" @@ -39,12 +33,12 @@ __attribute__((weak)) layer_state_t default_layer_state_set_kb(layer_state_t sta   */  static void default_layer_state_set(layer_state_t state) {      state = default_layer_state_set_kb(state); -    debug("default_layer_state: "); +    ac_dprintf("default_layer_state: ");      default_layer_debug(); -    debug(" to "); +    ac_dprintf(" to ");      default_layer_state = state;      default_layer_debug(); -    debug("\n"); +    ac_dprintf("\n");  #if defined(STRICT_LAYER_RELEASE)      clear_keyboard_but_mods(); // To avoid stuck keys  #elif defined(SEMI_STRICT_LAYER_RELEASE) @@ -57,7 +51,7 @@ static void default_layer_state_set(layer_state_t state) {   * Print out the hex value of the 32-bit default layer state, as well as the value of the highest bit.   */  void default_layer_debug(void) { -    dprintf("%08lX(%u)", default_layer_state, get_highest_layer(default_layer_state)); +    ac_dprintf("%08hX(%u)", default_layer_state, get_highest_layer(default_layer_state));  }  /** \brief Default Layer Set @@ -119,12 +113,12 @@ __attribute__((weak)) layer_state_t layer_state_set_kb(layer_state_t state) {   */  void layer_state_set(layer_state_t state) {      state = layer_state_set_kb(state); -    dprint("layer_state: "); +    ac_dprintf("layer_state: ");      layer_debug(); -    dprint(" to "); +    ac_dprintf(" to ");      layer_state = state;      layer_debug(); -    dprintln(); +    ac_dprintf("\n");  #    if defined(STRICT_LAYER_RELEASE)      clear_keyboard_but_mods(); // To avoid stuck keys  #    elif defined(SEMI_STRICT_LAYER_RELEASE) @@ -218,7 +212,7 @@ void layer_xor(layer_state_t state) {   * Print out the hex value of the 32-bit layer state, as well as the value of the highest bit.   */  void layer_debug(void) { -    dprintf("%08lX(%u)", layer_state, get_highest_layer(layer_state)); +    ac_dprintf("%08hX(%u)", layer_state, get_highest_layer(layer_state));  }  #endif diff --git a/quantum/action_layer.h b/quantum/action_layer.h index bd1085a70f..3fe2726529 100644 --- a/quantum/action_layer.h +++ b/quantum/action_layer.h @@ -25,6 +25,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  #    ifndef DYNAMIC_KEYMAP_LAYER_COUNT  #        define DYNAMIC_KEYMAP_LAYER_COUNT 4  #    endif +#    define MAX_LAYER DYNAMIC_KEYMAP_LAYER_COUNT  #    if DYNAMIC_KEYMAP_LAYER_COUNT <= 8  #        ifndef LAYER_STATE_8BIT  #            define LAYER_STATE_8BIT diff --git a/quantum/action_tapping.c b/quantum/action_tapping.c index df3317ac05..821265d399 100644 --- a/quantum/action_tapping.c +++ b/quantum/action_tapping.c @@ -1,12 +1,6 @@  #include <stdint.h>  #include <stdbool.h> -#ifdef DEBUG_ACTION -#    include "debug.h" -#else -#    include "nodebug.h" -#endif -  #include "action.h"  #include "action_layer.h"  #include "action_tapping.h" @@ -15,7 +9,15 @@  #ifndef NO_ACTION_TAPPING -#    define IS_TAPPING() !IS_NOEVENT(tapping_key.event) +#    if defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) +#        error "IGNORE_MOD_TAP_INTERRUPT_PER_KEY has been removed; the code needs to be ported to use HOLD_ON_OTHER_KEY_PRESS_PER_KEY instead." +#    elif !defined(IGNORE_MOD_TAP_INTERRUPT) +#        if !defined(PERMISSIVE_HOLD) && !defined(PERMISSIVE_HOLD_PER_KEY) && !defined(HOLD_ON_OTHER_KEY_PRESS) && !defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) +#            pragma message "The default behavior of mod-taps will change to mimic IGNORE_MOD_TAP_INTERRUPT in the future.\nIf you wish to keep the old default behavior of mod-taps, please use HOLD_ON_OTHER_KEY_PRESS." +#        endif +#    endif + +#    define IS_TAPPING() IS_EVENT(tapping_key.event)  #    define IS_TAPPING_PRESSED() (IS_TAPPING() && tapping_key.event.pressed)  #    define IS_TAPPING_RELEASED() (IS_TAPPING() && !tapping_key.event.pressed)  #    define IS_TAPPING_KEY(k) (IS_TAPPING() && KEYEQ(tapping_key.event.key, (k))) @@ -25,6 +27,7 @@  #        define IS_TAPPING_RECORD(r) (IS_TAPPING() && KEYEQ(tapping_key.event.key, (r->event.key)) && tapping_key.keycode == r->keycode)  #    endif  #    define WITHIN_TAPPING_TERM(e) (TIMER_DIFF_16(e.time, tapping_key.event.time) < GET_TAPPING_TERM(get_record_keycode(&tapping_key, false), &tapping_key)) +#    define WITHIN_QUICK_TAP_TERM(e) (TIMER_DIFF_16(e.time, tapping_key.event.time) < GET_QUICK_TAP_TERM(get_record_keycode(&tapping_key, false), &tapping_key))  #    ifdef DYNAMIC_TAPPING_TERM_ENABLE  uint16_t g_tapping_term = TAPPING_TERM; @@ -40,9 +43,9 @@ __attribute__((weak)) uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *r  }  #    endif -#    ifdef TAPPING_FORCE_HOLD_PER_KEY -__attribute__((weak)) bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) { -    return false; +#    ifdef QUICK_TAP_TERM_PER_KEY +__attribute__((weak)) uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) { +    return QUICK_TAP_TERM;  }  #    endif @@ -82,15 +85,15 @@ static void debug_waiting_buffer(void);   */  void action_tapping_process(keyrecord_t record) {      if (process_tapping(&record)) { -        if (!IS_NOEVENT(record.event)) { -            debug("processed: "); +        if (IS_EVENT(record.event)) { +            ac_dprintf("processed: ");              debug_record(record); -            debug("\n"); +            ac_dprintf("\n");          }      } else {          if (!waiting_buffer_enq(record)) {              // clear all in case of overflow. -            debug("OVERFLOW: CLEAR ALL STATES\n"); +            ac_dprintf("OVERFLOW: CLEAR ALL STATES\n");              clear_keyboard();              waiting_buffer_clear();              tapping_key = (keyrecord_t){}; @@ -98,25 +101,73 @@ void action_tapping_process(keyrecord_t record) {      }      // process waiting_buffer -    if (!IS_NOEVENT(record.event) && waiting_buffer_head != waiting_buffer_tail) { -        debug("---- action_exec: process waiting_buffer -----\n"); +    if (IS_EVENT(record.event) && waiting_buffer_head != waiting_buffer_tail) { +        ac_dprintf("---- action_exec: process waiting_buffer -----\n");      }      for (; waiting_buffer_tail != waiting_buffer_head; waiting_buffer_tail = (waiting_buffer_tail + 1) % WAITING_BUFFER_SIZE) {          if (process_tapping(&waiting_buffer[waiting_buffer_tail])) { -            debug("processed: waiting_buffer["); -            debug_dec(waiting_buffer_tail); -            debug("] = "); +            ac_dprintf("processed: waiting_buffer[%u] =", waiting_buffer_tail);              debug_record(waiting_buffer[waiting_buffer_tail]); -            debug("\n\n"); +            ac_dprintf("\n\n");          } else {              break;          }      } -    if (!IS_NOEVENT(record.event)) { -        debug("\n"); +    if (IS_EVENT(record.event)) { +        ac_dprintf("\n");      }  } +/* Some conditionally defined helper macros to keep process_tapping more + * readable. The conditional definition of tapping_keycode and all the + * conditional uses of it are hidden inside macros named TAP_... + */ +#    if (defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT)) || defined(PERMISSIVE_HOLD_PER_KEY) || defined(QUICK_TAP_TERM_PER_KEY) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) +#        define TAP_DEFINE_KEYCODE uint16_t tapping_keycode = get_record_keycode(&tapping_key, false) +#    else +#        define TAP_DEFINE_KEYCODE +#    endif + +#    if defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT) +#        ifdef RETRO_TAPPING_PER_KEY +#            define TAP_GET_RETRO_TAPPING get_retro_tapping(tapping_keycode, &tapping_key) +#        else +#            define TAP_GET_RETRO_TAPPING true +#        endif +#        define MAYBE_RETRO_SHIFTING(ev) (TAP_GET_RETRO_TAPPING && (RETRO_SHIFT + 0) != 0 && TIMER_DIFF_16((ev).time, tapping_key.event.time) < (RETRO_SHIFT + 0)) +#        define TAP_IS_LT IS_QK_LAYER_TAP(tapping_keycode) +#        define TAP_IS_MT IS_QK_MOD_TAP(tapping_keycode) +#        define TAP_IS_RETRO IS_RETRO(tapping_keycode) +#    else +#        define TAP_GET_RETRO_TAPPING false +#        define MAYBE_RETRO_SHIFTING(ev) false +#        define TAP_IS_LT false +#        define TAP_IS_MT false +#        define TAP_IS_RETRO false +#    endif + +#    ifdef PERMISSIVE_HOLD_PER_KEY +#        define TAP_GET_PERMISSIVE_HOLD get_permissive_hold(tapping_keycode, &tapping_key) +#    elif defined(PERMISSIVE_HOLD) +#        define TAP_GET_PERMISSIVE_HOLD true +#    else +#        define TAP_GET_PERMISSIVE_HOLD false +#    endif + +#    ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY +#        define TAP_GET_HOLD_ON_OTHER_KEY_PRESS get_hold_on_other_key_press(tapping_keycode, &tapping_key) +#    elif defined(HOLD_ON_OTHER_KEY_PRESS) +#        define TAP_GET_HOLD_ON_OTHER_KEY_PRESS true +#    else +#        define TAP_GET_HOLD_ON_OTHER_KEY_PRESS false +#    endif + +#    if defined(IGNORE_MOD_TAP_INTERRUPT) +#        define TAP_GET_IGNORE_MOD_TAP_INTERRUPT true +#    else +#        define TAP_GET_IGNORE_MOD_TAP_INTERRUPT false +#    endif +  /** \brief Tapping   *   * Rule: Tap key is typed(pressed and released) within TAPPING_TERM. @@ -125,31 +176,18 @@ void action_tapping_process(keyrecord_t record) {  /* return true when key event is processed or consumed. */  bool process_tapping(keyrecord_t *keyp) {      keyevent_t event = keyp->event; -#    if (defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT)) || defined(PERMISSIVE_HOLD_PER_KEY) || defined(TAPPING_FORCE_HOLD_PER_KEY) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) -    uint16_t tapping_keycode = get_record_keycode(&tapping_key, false); -#    endif +    TAP_DEFINE_KEYCODE;      // if tapping      if (IS_TAPPING_PRESSED()) { -        // clang-format off -        if (WITHIN_TAPPING_TERM(event) -#    if defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT) -            || ( -#        ifdef RETRO_TAPPING_PER_KEY -                get_retro_tapping(tapping_keycode, &tapping_key) && -#        endif -                (RETRO_SHIFT + 0) != 0 && TIMER_DIFF_16(event.time, tapping_key.event.time) < (RETRO_SHIFT + 0) -            ) -#    endif -        ) { -            // clang-format on +        if (WITHIN_TAPPING_TERM(event) || MAYBE_RETRO_SHIFTING(event)) {              if (tapping_key.tap.count == 0) {                  if (IS_TAPPING_RECORD(keyp) && !event.pressed) {  #    if defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT)                      retroshift_swap_times();  #    endif                      // first tap! -                    debug("Tapping: First tap(0->1).\n"); +                    ac_dprintf("Tapping: First tap(0->1).\n");                      tapping_key.tap.count = 1;                      debug_tapping_key();                      process_record(&tapping_key); @@ -164,73 +202,46 @@ bool process_tapping(keyrecord_t *keyp) {                   * useful for long TAPPING_TERM but may prevent fast typing.                   */                  // clang-format off -#    if defined(PERMISSIVE_HOLD) || defined(PERMISSIVE_HOLD_PER_KEY) || (defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT))                  else if (                      ( -                        IS_RELEASED(event) && waiting_buffer_typed(event) -#        ifdef PERMISSIVE_HOLD_PER_KEY -                            && get_permissive_hold(tapping_keycode, &tapping_key) -#        elif defined(PERMISSIVE_HOLD) -                            && true -#        endif +                        IS_RELEASED(event) && waiting_buffer_typed(event) && +                        TAP_GET_PERMISSIVE_HOLD                      )                      // Causes nested taps to not wait past TAPPING_TERM/RETRO_SHIFT                      // unnecessarily and fixes them for Layer Taps. -#        if defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT) -                    || ( -#            ifdef RETRO_TAPPING_PER_KEY -                        get_retro_tapping(tapping_keycode, &tapping_key) && -#            endif +                    || (TAP_GET_RETRO_TAPPING &&                          (                              // Rolled over the two keys. -                            ( -                                ( -                                    false -#            if defined(HOLD_ON_OTHER_KEY_PRESS) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) -                                    || ( -                                        IS_LT(tapping_keycode) -#                ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY -                                        && get_hold_on_other_key_press(tapping_keycode, &tapping_key) -#                endif -                                    ) -#            endif -#            if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) -                                    || ( -                                        IS_MT(tapping_keycode) -#                ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY -                                        && !get_ignore_mod_tap_interrupt(tapping_keycode, &tapping_key) -#                endif -                                    ) -#            endif -                                ) && tapping_key.tap.interrupted == true +                            (tapping_key.tap.interrupted == true && ( +                                (TAP_IS_LT && TAP_GET_HOLD_ON_OTHER_KEY_PRESS) || +                                (TAP_IS_MT && TAP_GET_HOLD_ON_OTHER_KEY_PRESS) +                                )                              )                              // Makes Retro Shift ignore [IGNORE_MOD_TAP_INTERRUPT's                              // effects on nested taps for MTs and the default                              // behavior of LTs] below TAPPING_TERM or RETRO_SHIFT.                              || ( -                                IS_RETRO(tapping_keycode) +                                TAP_IS_RETRO                                  && (event.key.col != tapping_key.event.key.col || event.key.row != tapping_key.event.key.row)                                  && IS_RELEASED(event) && waiting_buffer_typed(event)                              )                          )                      ) -#        endif                  ) {                      // clang-format on -                    debug("Tapping: End. No tap. Interfered by typing key\n"); +                    ac_dprintf("Tapping: End. No tap. Interfered by typing key\n");                      process_record(&tapping_key);                      tapping_key = (keyrecord_t){};                      debug_tapping_key();                      // enqueue                      return false;                  } -#    endif                  /* Process release event of a key pressed before tapping starts                   * Without this unexpected repeating will occur with having fast repeating setting                   * https://github.com/tmk/tmk_keyboard/issues/60                   */                  else if (IS_RELEASED(event) && !waiting_buffer_typed(event)) { -                    // Modifier should be retained till end of this tapping. +                    // Modifier/Layer should be retained till end of this tapping.                      action_t action = layer_switch_get_action(event.key);                      switch (action.kind.id) {                          case ACT_LMODS: @@ -243,28 +254,33 @@ bool process_tapping(keyrecord_t *keyp) {                              if (action.key.mods && keyp->tap.count == 0) return false;                              if (IS_MOD(action.key.code)) return false;                              break; +                        case ACT_LAYER_TAP: +                        case ACT_LAYER_TAP_EXT: +                            switch (action.layer_tap.code) { +                                case 0 ...(OP_TAP_TOGGLE - 1): +                                case OP_ON_OFF: +                                case OP_OFF_ON: +                                case OP_SET_CLEAR: +                                    return false; +                            } +                            break;                      }                      // Release of key should be process immediately. -                    debug("Tapping: release event of a key pressed before tapping\n"); +                    ac_dprintf("Tapping: release event of a key pressed before tapping\n");                      process_record(keyp);                      return true;                  } else {                      // set interrupted flag when other key preesed during tapping                      if (event.pressed) {                          tapping_key.tap.interrupted = true; -#    if defined(HOLD_ON_OTHER_KEY_PRESS) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) -#        if defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) -                        if (get_hold_on_other_key_press(tapping_keycode, &tapping_key)) -#        endif -                        { -                            debug("Tapping: End. No tap. Interfered by pressed key\n"); +                        if (TAP_GET_HOLD_ON_OTHER_KEY_PRESS) { +                            ac_dprintf("Tapping: End. No tap. Interfered by pressed key\n");                              process_record(&tapping_key);                              tapping_key = (keyrecord_t){};                              debug_tapping_key();                              // enqueue                              return false;                          } -#    endif                      }                      // enqueue                      return false; @@ -273,9 +289,7 @@ bool process_tapping(keyrecord_t *keyp) {              // tap_count > 0              else {                  if (IS_TAPPING_RECORD(keyp) && !event.pressed) { -                    debug("Tapping: Tap release("); -                    debug_dec(tapping_key.tap.count); -                    debug(")\n"); +                    ac_dprintf("Tapping: Tap release(%u)\n", tapping_key.tap.count);                      keyp->tap = tapping_key.tap;                      process_record(keyp);                      tapping_key = *keyp; @@ -283,7 +297,7 @@ bool process_tapping(keyrecord_t *keyp) {                      return true;                  } else if (is_tap_record(keyp) && event.pressed) {                      if (tapping_key.tap.count > 1) { -                        debug("Tapping: Start new tap with releasing last tap(>1).\n"); +                        ac_dprintf("Tapping: Start new tap with releasing last tap(>1).\n");                          // unregister key                          process_record(&(keyrecord_t){                              .tap           = tapping_key.tap, @@ -295,15 +309,15 @@ bool process_tapping(keyrecord_t *keyp) {  #    endif                          });                      } else { -                        debug("Tapping: Start while last tap(1).\n"); +                        ac_dprintf("Tapping: Start while last tap(1).\n");                      }                      tapping_key = *keyp;                      waiting_buffer_scan_tap();                      debug_tapping_key();                      return true;                  } else { -                    if (!IS_NOEVENT(event)) { -                        debug("Tapping: key event while last tap(>0).\n"); +                    if (IS_EVENT(event)) { +                        ac_dprintf("Tapping: key event while last tap(>0).\n");                      }                      process_record(keyp);                      return true; @@ -313,23 +327,23 @@ bool process_tapping(keyrecord_t *keyp) {          // after TAPPING_TERM          else {              if (tapping_key.tap.count == 0) { -                debug("Tapping: End. Timeout. Not tap(0): "); +                ac_dprintf("Tapping: End. Timeout. Not tap(0): ");                  debug_event(event); -                debug("\n"); +                ac_dprintf("\n");                  process_record(&tapping_key);                  tapping_key = (keyrecord_t){};                  debug_tapping_key();                  return false;              } else {                  if (IS_TAPPING_RECORD(keyp) && !event.pressed) { -                    debug("Tapping: End. last timeout tap release(>0)."); +                    ac_dprintf("Tapping: End. last timeout tap release(>0).");                      keyp->tap = tapping_key.tap;                      process_record(keyp);                      tapping_key = (keyrecord_t){};                      return true;                  } else if (is_tap_record(keyp) && event.pressed) {                      if (tapping_key.tap.count > 1) { -                        debug("Tapping: Start new tap with releasing last timeout tap(>1).\n"); +                        ac_dprintf("Tapping: Start new tap with releasing last timeout tap(>1).\n");                          // unregister key                          process_record(&(keyrecord_t){                              .tap           = tapping_key.tap, @@ -341,15 +355,15 @@ bool process_tapping(keyrecord_t *keyp) {  #    endif                          });                      } else { -                        debug("Tapping: Start while last timeout tap(1).\n"); +                        ac_dprintf("Tapping: Start while last timeout tap(1).\n");                      }                      tapping_key = *keyp;                      waiting_buffer_scan_tap();                      debug_tapping_key();                      return true;                  } else { -                    if (!IS_NOEVENT(event)) { -                        debug("Tapping: key event while last timeout tap(>0).\n"); +                    if (IS_EVENT(event)) { +                        ac_dprintf("Tapping: key event while last timeout tap(>0).\n");                      }                      process_record(keyp);                      return true; @@ -357,45 +371,25 @@ bool process_tapping(keyrecord_t *keyp) {              }          }      } else if (IS_TAPPING_RELEASED()) { -        // clang-format off -        if (WITHIN_TAPPING_TERM(event) -#    if defined(AUTO_SHIFT_ENABLE) && defined(RETRO_SHIFT) -            || ( -#        ifdef RETRO_TAPPING_PER_KEY -                get_retro_tapping(tapping_keycode, &tapping_key) && -#        endif -                (RETRO_SHIFT + 0) != 0 && TIMER_DIFF_16(event.time, tapping_key.event.time) < (RETRO_SHIFT + 0) -            ) -#    endif -        ) { -            // clang-format on +        if (WITHIN_TAPPING_TERM(event) || MAYBE_RETRO_SHIFTING(event)) {              if (event.pressed) {                  if (IS_TAPPING_RECORD(keyp)) { -//#    ifndef TAPPING_FORCE_HOLD -#    if !defined(TAPPING_FORCE_HOLD) || defined(TAPPING_FORCE_HOLD_PER_KEY) -                    if ( -#        ifdef TAPPING_FORCE_HOLD_PER_KEY -                        !get_tapping_force_hold(tapping_keycode, &tapping_key) && -#        endif -                        !tapping_key.tap.interrupted && tapping_key.tap.count > 0) { +                    if (WITHIN_QUICK_TAP_TERM(event) && !tapping_key.tap.interrupted && tapping_key.tap.count > 0) {                          // sequential tap.                          keyp->tap = tapping_key.tap;                          if (keyp->tap.count < 15) keyp->tap.count += 1; -                        debug("Tapping: Tap press("); -                        debug_dec(keyp->tap.count); -                        debug(")\n"); +                        ac_dprintf("Tapping: Tap press(%u)\n", keyp->tap.count);                          process_record(keyp);                          tapping_key = *keyp;                          debug_tapping_key();                          return true;                      } -#    endif                      // FIX: start new tap again                      tapping_key = *keyp;                      return true;                  } else if (is_tap_record(keyp)) {                      // Sequential tap can be interfered with other tap key. -                    debug("Tapping: Start with interfering other tap.\n"); +                    ac_dprintf("Tapping: Start with interfering other tap.\n");                      tapping_key = *keyp;                      waiting_buffer_scan_tap();                      debug_tapping_key(); @@ -408,16 +402,16 @@ bool process_tapping(keyrecord_t *keyp) {                      return true;                  }              } else { -                if (!IS_NOEVENT(event)) debug("Tapping: other key just after tap.\n"); +                if (IS_EVENT(event)) ac_dprintf("Tapping: other key just after tap.\n");                  process_record(keyp);                  return true;              }          } else {              // FIX: process_action here?              // timeout. no sequential tap. -            debug("Tapping: End(Timeout after releasing last tap): "); +            ac_dprintf("Tapping: End(Timeout after releasing last tap): ");              debug_event(event); -            debug("\n"); +            ac_dprintf("\n");              tapping_key = (keyrecord_t){};              debug_tapping_key();              return false; @@ -426,7 +420,7 @@ bool process_tapping(keyrecord_t *keyp) {      // not tapping state      else {          if (event.pressed && is_tap_record(keyp)) { -            debug("Tapping: Start(Press tap key).\n"); +            ac_dprintf("Tapping: Start(Press tap key).\n");              tapping_key = *keyp;              process_record_tap_hint(&tapping_key);              waiting_buffer_scan_tap(); @@ -449,14 +443,14 @@ bool waiting_buffer_enq(keyrecord_t record) {      }      if ((waiting_buffer_head + 1) % WAITING_BUFFER_SIZE == waiting_buffer_tail) { -        debug("waiting_buffer_enq: Over flow.\n"); +        ac_dprintf("waiting_buffer_enq: Over flow.\n");          return false;      }      waiting_buffer[waiting_buffer_head] = record;      waiting_buffer_head                 = (waiting_buffer_head + 1) % WAITING_BUFFER_SIZE; -    debug("waiting_buffer_enq: "); +    ac_dprintf("waiting_buffer_enq: ");      debug_waiting_buffer();      return true;  } @@ -510,9 +504,7 @@ void waiting_buffer_scan_tap(void) {              waiting_buffer[i].tap.count = 1;              process_record(&tapping_key); -            debug("waiting_buffer_scan_tap: found at ["); -            debug_dec(i); -            debug("]\n"); +            ac_dprintf("waiting_buffer_scan_tap: found at [%u]\n", i);              debug_waiting_buffer();              return;          } @@ -524,9 +516,9 @@ void waiting_buffer_scan_tap(void) {   * FIXME: Needs docs   */  static void debug_tapping_key(void) { -    debug("TAPPING_KEY="); +    ac_dprintf("TAPPING_KEY=");      debug_record(tapping_key); -    debug("\n"); +    ac_dprintf("\n");  }  /** \brief Waiting buffer debug print @@ -534,15 +526,13 @@ static void debug_tapping_key(void) {   * FIXME: Needs docs   */  static void debug_waiting_buffer(void) { -    debug("{ "); +    ac_dprintf("{ ");      for (uint8_t i = waiting_buffer_tail; i != waiting_buffer_head; i = (i + 1) % WAITING_BUFFER_SIZE) { -        debug("["); -        debug_dec(i); -        debug("]="); +        ac_dprintf("[%u]=", i);          debug_record(waiting_buffer[i]); -        debug(" "); +        ac_dprintf(" ");      } -    debug("}\n"); +    ac_dprintf("}\n");  }  #endif diff --git a/quantum/action_tapping.h b/quantum/action_tapping.h index bcccc7ac45..c078488c04 100644 --- a/quantum/action_tapping.h +++ b/quantum/action_tapping.h @@ -22,6 +22,11 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  #    define TAPPING_TERM 200  #endif +/* period of quick tap(ms) */ +#if !defined(QUICK_TAP_TERM) || QUICK_TAP_TERM > TAPPING_TERM +#    define QUICK_TAP_TERM TAPPING_TERM +#endif +  /* tap count needed for toggling a feature */  #ifndef TAPPING_TOGGLE  #    define TAPPING_TOGGLE 5 @@ -36,9 +41,9 @@ void     action_tapping_process(keyrecord_t record);  #endif  uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record); +uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record);  bool     get_permissive_hold(uint16_t keycode, keyrecord_t *record);  bool     get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record); -bool     get_tapping_force_hold(uint16_t keycode, keyrecord_t *record);  bool     get_retro_tapping(uint16_t keycode, keyrecord_t *record);  bool     get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record); @@ -53,3 +58,9 @@ extern uint16_t g_tapping_term;  #else  #    define GET_TAPPING_TERM(keycode, record) (TAPPING_TERM)  #endif + +#ifdef QUICK_TAP_TERM_PER_KEY +#    define GET_QUICK_TAP_TERM(keycode, record) get_quick_tap_term(keycode, record) +#else +#    define GET_QUICK_TAP_TERM(keycode, record) (QUICK_TAP_TERM) +#endif diff --git a/quantum/haptic.c b/quantum/haptic.c index ad64fe2cc7..c151547fca 100644 --- a/quantum/haptic.c +++ b/quantum/haptic.c @@ -25,6 +25,9 @@  #ifdef SOLENOID_ENABLE  #    include "solenoid.h"  #endif +#if defined(SPLIT_KEYBOARD) && defined(SPLIT_HAPTIC_ENABLE) +extern uint8_t split_haptic_play; +#endif  haptic_config_t haptic_config; @@ -319,9 +322,15 @@ void haptic_play(void) {      uint8_t play_eff = 0;      play_eff         = haptic_config.mode;      DRV_pulse(play_eff); +#    if defined(SPLIT_KEYBOARD) && defined(SPLIT_HAPTIC_ENABLE) +    split_haptic_play = haptic_config.mode; +#    endif  #endif  #ifdef SOLENOID_ENABLE      solenoid_fire_handler(); +#    if defined(SPLIT_KEYBOARD) && defined(SPLIT_HAPTIC_ENABLE) +    split_haptic_play = 1; +#    endif  #endif  } diff --git a/quantum/keyboard.h b/quantum/keyboard.h index 86ce65aac1..d0b52dd13a 100644 --- a/quantum/keyboard.h +++ b/quantum/keyboard.h @@ -53,6 +53,9 @@ typedef struct {  static inline bool IS_NOEVENT(keyevent_t event) {      return event.time == 0 || (event.key.row == KEYLOC_TICK && event.key.col == KEYLOC_TICK);  } +static inline bool IS_EVENT(keyevent_t event) { +    return !IS_NOEVENT(event); +}  static inline bool IS_KEYEVENT(keyevent_t event) {      return event.key.row < MATRIX_ROWS && event.key.col < MATRIX_COLS;  } @@ -63,10 +66,10 @@ static inline bool IS_ENCODEREVENT(keyevent_t event) {      return event.key.row == KEYLOC_ENCODER_CW || event.key.row == KEYLOC_ENCODER_CCW;  }  static inline bool IS_PRESSED(keyevent_t event) { -    return !IS_NOEVENT(event) && event.pressed; +    return IS_EVENT(event) && event.pressed;  }  static inline bool IS_RELEASED(keyevent_t event) { -    return !IS_NOEVENT(event) && !event.pressed; +    return IS_EVENT(event) && !event.pressed;  }  /* Common keyevent object factory */ diff --git a/quantum/keycodes.h b/quantum/keycodes.h index c013858e78..b5f0a32500 100644 --- a/quantum/keycodes.h +++ b/quantum/keycodes.h @@ -1,4 +1,4 @@ -// Copyright 2022 QMK +// Copyright 2023 QMK  // SPDX-License-Identifier: GPL-2.0-or-later  /******************************************************************************* diff --git a/quantum/keymap_extras/keymap_belgian.h b/quantum/keymap_extras/keymap_belgian.h index 207905b291..1bf9549c5a 100644 --- a/quantum/keymap_extras/keymap_belgian.h +++ b/quantum/keymap_extras/keymap_belgian.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ² │ & │ é │ " │ ' │ ( │ § │ è │ ! │ ç │ à │ ) │ - │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ A │ Z │ E │ R │ T │ Y │ U │ I │ O │ P │ ^ │ $ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Q │ S │ D │ F │ G │ H │ J │ K │ L │ M │ ù │ µ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ W │ X │ C │ V │ B │ N │ , │ ; │ : │ = │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define BE_SUP2 KC_GRV  // ²  #define BE_AMPR KC_1    // &  #define BE_EACU KC_2    // é @@ -47,7 +41,6 @@  #define BE_AGRV KC_0    // à  #define BE_RPRN KC_MINS // )  #define BE_MINS KC_EQL  // - -// Row 2  #define BE_A    KC_Q    // A  #define BE_Z    KC_W    // Z  #define BE_E    KC_E    // E @@ -60,7 +53,6 @@  #define BE_P    KC_P    // P  #define BE_DCIR KC_LBRC // ^ (dead)  #define BE_DLR  KC_RBRC // $ -// Row 3  #define BE_Q    KC_A    // Q  #define BE_S    KC_S    // S  #define BE_D    KC_D    // D @@ -73,7 +65,6 @@  #define BE_M    KC_SCLN // M  #define BE_UGRV KC_QUOT // ù  #define BE_MICR KC_NUHS // µ -// Row 4  #define BE_LABK KC_NUBS // <  #define BE_W    KC_Z    // W  #define BE_X    KC_X    // X @@ -85,21 +76,6 @@  #define BE_SCLN KC_COMM // ;  #define BE_COLN KC_DOT  // :  #define BE_EQL  KC_SLSH // = - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ³ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ° │ _ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ¨ │ * │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ % │ £ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │ ? │ . │ / │ + │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BE_SUP3 S(BE_SUP2) // ³  #define BE_1    S(BE_AMPR) // 1  #define BE_2    S(BE_EACU) // 2 @@ -113,46 +89,26 @@  #define BE_0    S(BE_AGRV) // 0  #define BE_DEG  S(BE_RPRN) // °  #define BE_UNDS S(BE_MINS) // _ -// Row 2  #define BE_DIAE S(BE_DCIR) // ¨ (dead)  #define BE_ASTR S(BE_DLR)  // * -// Row 3  #define BE_PERC S(BE_UGRV) // %  #define BE_PND  S(BE_MICR) // £ -// Row 4  #define BE_RABK S(BE_LABK) // >  #define BE_QUES S(BE_COMM) // ?  #define BE_DOT  S(BE_SCLN) // .  #define BE_SLSH S(BE_COLN) // /  #define BE_PLUS S(BE_EQL)  // + - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ | │ @ │ # │   │   │ ^ │   │   │ { │ } │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ´ │ ` │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │   │   │   │   │   │   │   │   │   │ ~ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BE_PIPE ALGR(BE_AMPR) // |  #define BE_AT   ALGR(BE_EACU) // @  #define BE_HASH ALGR(BE_DQUO) // #  #define BE_CIRC ALGR(BE_SECT) // ^  #define BE_LCBR ALGR(BE_CCED) // {  #define BE_RCBR ALGR(BE_AGRV) // } -// Row 2  #define BE_EURO ALGR(BE_E)    // €  #define BE_LBRC ALGR(BE_DCIR) // [  #define BE_RBRC ALGR(BE_DLR)  // ] -// Row 3  #define BE_ACUT ALGR(BE_UGRV) // ´ (dead)  #define BE_GRV  ALGR(BE_MICR) // ` (dead) -// Row 4  #define BE_BSLS ALGR(BE_LABK) // (backslash)  #define BE_TILD ALGR(BE_EQL)  // ~ + diff --git a/quantum/keymap_extras/keymap_bepo.h b/quantum/keymap_extras/keymap_bepo.h index 6361823242..12026ce649 100644 --- a/quantum/keymap_extras/keymap_bepo.h +++ b/quantum/keymap_extras/keymap_bepo.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ $ │ " │ « │ » │ ( │ ) │ @ │ + │ - │ / │ * │ = │ % │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ B │ É │ P │ O │ È │ ^ │ V │ D │ L │ J │ Z │ W │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ U │ I │ E │ , │ C │ T │ S │ R │ N │ M │ Ç │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ Ê │ À │ Y │ X │ . │ K │ ' │ Q │ G │ H │ F │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define BP_DLR  KC_GRV  // $  #define BP_DQUO KC_1    // "  #define BP_LDAQ KC_2    // « @@ -47,7 +41,6 @@  #define BP_ASTR KC_0    // *  #define BP_EQL  KC_MINS // =  #define BP_PERC KC_EQL  // % -// Row 2  #define BP_B    KC_Q    // B  #define BP_EACU KC_W    // É  #define BP_P    KC_E    // P @@ -60,7 +53,6 @@  #define BP_J    KC_P    // J  #define BP_Z    KC_LBRC // Z  #define BP_W    KC_RBRC // W -// Row 3  #define BP_A    KC_A    // A  #define BP_U    KC_S    // U  #define BP_I    KC_D    // I @@ -73,7 +65,6 @@  #define BP_N    KC_SCLN // N  #define BP_M    KC_QUOT // M  #define BP_CCED KC_BSLS // Ç -// Row 4  #define BP_ECIR KC_NUBS // Ê  #define BP_AGRV KC_Z    // À  #define BP_Y    KC_X    // Y @@ -85,21 +76,6 @@  #define BP_G    KC_COMM // G  #define BP_H    KC_DOT  // H  #define BP_F    KC_SLSH // F - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ # │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ° │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │ ! │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │ ; │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │ : │   │ ? │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BP_HASH S(BP_DLR)  // #  #define BP_1    S(BP_DQUO) // 1  #define BP_2    S(BP_LDAQ) // 2 @@ -113,30 +89,11 @@  #define BP_0    S(BP_ASTR) // 0  #define BP_DEG  S(BP_EQL)  // °  #define BP_GRV  S(BP_PERC) // ` -// Row 2  #define BP_EXLM S(BP_DCIR) // ! -// Row 3  #define BP_SCLN S(BP_COMM) // ; -// Row 4  #define BP_COLN S(BP_DOT)  // :  #define BP_QUES S(BP_QUOT) // ? -// Row 5 -#define BP_NBSP S(KC_SPC)  //   (non-breaking space) - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ – │ — │ < │ > │ [ │ ] │ ^ │ ± │ − │ ÷ │ × │ ≠ │ ‰ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ | │ ´ │ & │ Œ │ ` │ ¡ │ ˇ │ Ð │ / │ IJ │ Ə │ ˘ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Æ │ Ù │ ¨ │ € │   │ © │ Þ │ ẞ │ ® │ ~ │ ¯ │ ¸ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ \ │ { │ } │ … │ ~ │ ¿ │ ° │   │ † │ ˛ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │           _            │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +#define BP_NBSP S(KC_SPC)  // (non-breaking space)  #define BP_NDSH ALGR(BP_DLR)  // –  #define BP_MDSH ALGR(BP_DQUO) // —  #define BP_LABK ALGR(BP_LDAQ) // < @@ -150,7 +107,6 @@  #define BP_MUL  ALGR(BP_ASTR) // ×  #define BP_NEQL ALGR(BP_EQL)  // ≠  #define BP_PERM ALGR(BP_PERC) // ‰ -// Row 2  #define BP_PIPE ALGR(BP_B)    // |  #define BP_ACUT ALGR(BP_EACU) // ´ (dead)  #define BP_AMPR ALGR(BP_P)    // & @@ -163,7 +119,6 @@  #define BP_IJ   ALGR(BP_J)    // IJ  #define BP_SCHW ALGR(BP_Z)    // Ə  #define BP_BREV ALGR(BP_W)    // ˘ (dead) -// Row 3  #define BP_AE   ALGR(BP_A)    // Æ  #define BP_UGRV ALGR(BP_U)    // Ù  #define BP_DIAE ALGR(BP_I)    // ¨ (dead) @@ -175,7 +130,6 @@  #define BP_DTIL ALGR(BP_N)    // ~ (dead)  #define BP_MACR ALGR(BP_M)    // ¯ (dead)  #define BP_CEDL ALGR(BP_CCED) // ¸ (dead) -// Row 4  #define BP_BSLS ALGR(BP_AGRV) // (backslash)  #define BP_LCBR ALGR(BP_Y)    // {  #define BP_RCBR ALGR(BP_X)    // } @@ -186,23 +140,7 @@  #define BP_DGRK ALGR(BP_G)    // µ (dead Greek key)  #define BP_DAGG ALGR(BP_H)    // †  #define BP_OGON ALGR(BP_F)    // ˛ (dead) -// Row 5  #define BP_UNDS ALGR(KC_SPC)  // _ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¶ │ „ │ “ │ ” │ ≤ │ ≥ │   │ ¬ │ ¼ │ ½ │ ¾ │ ′ │ ″ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ ¦ │ ˝ │ § │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │ ˙ │ ¤ │ ̛  │ ſ │   │   │ ™ │   │ º │ , │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │ ‘ │ ’ │ · │ ⌨ │ ̉  │ ̣  │   │ ‡ │ ª │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BP_PARA S(ALGR(BP_DLR))  // ¶  #define BP_DLQU S(ALGR(BP_DQUO)) // „  #define BP_LDQU S(ALGR(BP_LDAQ)) // “ @@ -215,26 +153,23 @@  #define BP_TQTR S(ALGR(BP_ASTR)) // ¾  #define BP_PRIM S(ALGR(BP_EQL))  // ′  #define BP_DPRM S(ALGR(BP_PERC)) // ″ -// Row 2  #define BP_BRKP S(ALGR(BP_B))    // ¦  #define BP_DACU S(ALGR(BP_EACU)) // ˝ (dead)  #define BP_SECT S(ALGR(BP_P))    // § -// Row 3  #define BP_DOTA S(ALGR(BP_I))    // ˙ (dead)  #define BP_CURR S(ALGR(BP_E))    // ¤ (dead) -#define BP_HORN S(ALGR(BP_COMM)) // ̛  (dead) +#define BP_HORN S(ALGR(BP_COMM)) // ̛ (dead)  #define BP_LNGS S(ALGR(BP_C))    // ſ  #define BP_TM   S(ALGR(BP_R))    // ™  #define BP_MORD S(ALGR(BP_M))    // º  #define BP_DCMM S(ALGR(BP_CCED)) // , (dead) -// Row 4  #define BP_LSQU S(ALGR(BP_Y))    // ‘  #define BP_RSQU S(ALGR(BP_X))    // ’  #define BP_MDDT S(ALGR(BP_DOT))  // ·  #define BP_KEYB S(ALGR(BP_K))    // ⌨ -#define BP_HOKA S(ALGR(BP_QUOT)) // ̉  (dead) -#define BP_DOTB S(ALGR(BP_Q))    // ̣  (dead) +#define BP_HOKA S(ALGR(BP_QUOT)) // ̉ (dead) +#define BP_DOTB S(ALGR(BP_Q))    // ̣ (dead)  #define BP_DDAG S(ALGR(BP_H))    // ‡  #define BP_FORD S(ALGR(BP_F))    // ª -// Row 5 -#define BP_NNBS S(ALGR(KC_SPC))  //   (narrow non-breaking space) +#define BP_NNBS S(ALGR(KC_SPC))  // (narrow non-breaking space) + diff --git a/quantum/keymap_extras/keymap_brazilian_abnt2.h b/quantum/keymap_extras/keymap_brazilian_abnt2.h index b5892183be..70a09a52be 100644 --- a/quantum/keymap_extras/keymap_brazilian_abnt2.h +++ b/quantum/keymap_extras/keymap_brazilian_abnt2.h @@ -1,39 +1,33 @@ -/* Copyright 2017 Potiguar Faga - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ' │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ ´ │ [ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ç │ ~ │ ] │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┤ - * │    │ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ ; │ / │      │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬──┴─┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define BR_QUOT KC_GRV  // '  #define BR_1    KC_1    // 1  #define BR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define BR_0    KC_0    // 0  #define BR_MINS KC_MINS // -  #define BR_EQL  KC_EQL  // = -// Row 2  #define BR_Q    KC_Q    // Q  #define BR_W    KC_W    // W  #define BR_E    KC_E    // E @@ -60,7 +53,6 @@  #define BR_P    KC_P    // P  #define BR_ACUT KC_LBRC // ´ (dead)  #define BR_LBRC KC_RBRC // [ -// Row 3  #define BR_A    KC_A    // A  #define BR_S    KC_S    // S  #define BR_D    KC_D    // D @@ -73,7 +65,6 @@  #define BR_CCED KC_SCLN // Ç  #define BR_TILD KC_QUOT // ~ (dead)  #define BR_RBRC KC_BSLS // ] -// Row 4  #define BR_BSLS KC_NUBS // (backslash)  #define BR_Z    KC_Z    // Z  #define BR_X    KC_X    // X @@ -86,24 +77,8 @@  #define BR_DOT  KC_DOT  // .  #define BR_SCLN KC_SLSH // ;  #define BR_SLSH KC_INT1 // / -// Numpad  #define BR_PDOT KC_PCMM // .  #define BR_PCMM KC_PDOT // , - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ " │ ! │ @ │ # │ $ │ % │ ¨ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ` │ { │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ^ │ } │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┤ - * │    │ | │   │   │   │   │   │   │   │ < │ > │ : │ ? │      │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬──┴─┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BR_DQUO S(BR_QUOT) // "  #define BR_EXLM S(BR_1)    // !  #define BR_AT   S(BR_2)    // @ @@ -117,33 +92,15 @@  #define BR_RPRN S(BR_0)    // )  #define BR_UNDS S(BR_MINS) // _  #define BR_PLUS S(BR_EQL)  // + -// Row 2  #define BR_GRV  S(BR_ACUT) // ` (dead)  #define BR_LCBR S(BR_LBRC) // { -// Row 3  #define BR_CIRC S(BR_TILD) // ^ (dead)  #define BR_RCBR S(BR_RBRC) // } -// Row 4  #define BR_PIPE S(BR_BSLS) // |  #define BR_LABK S(BR_COMM) // <  #define BR_RABK S(BR_DOT)  // >  #define BR_COLN S(BR_SCLN) // :  #define BR_QUES S(BR_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¹ │ ² │ ³ │ £ │ ¢ │ ¬ │   │   │   │   │   │ § │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ ° │   │   │   │   │   │   │   │   │ ª │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ º │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┤ - * │    │   │   │   │ ₢ │   │   │   │   │   │   │   │   │      │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬──┴─┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define BR_SUP1 ALGR(BR_1)    // ¹  #define BR_SUP2 ALGR(BR_2)    // ²  #define BR_SUP3 ALGR(BR_3)    // ³ @@ -151,10 +108,8 @@  #define BR_CENT ALGR(BR_5)    // ¢  #define BR_NOT  ALGR(BR_6)    // ¬  #define BR_SECT ALGR(BR_EQL)  // § -// Row 2  #define BR_DEG  ALGR(BR_E)    // °  #define BR_FORD ALGR(BR_LBRC) // ª -// Row 3  #define BR_MORD ALGR(BR_RBRC) // º -// Row 4  #define BR_CRUZ ALGR(BR_C)    // ₢ + diff --git a/quantum/keymap_extras/keymap_canadian_multilingual.h b/quantum/keymap_extras/keymap_canadian_multilingual.h index e328cf65e6..44009f3aa2 100644 --- a/quantum/keymap_extras/keymap_canadian_multilingual.h +++ b/quantum/keymap_extras/keymap_canadian_multilingual.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ / │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ ^ │ Ç │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ È │ À │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ Ù │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ É │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define CA_SLSH KC_GRV  // /  #define CA_1    KC_1    // 1  #define CA_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define CA_0    KC_0    // 0  #define CA_MINS KC_MINS // -  #define CA_EQL  KC_EQL  // = -// Row 2  #define CA_Q    KC_Q    // Q  #define CA_W    KC_W    // W  #define CA_E    KC_E    // E @@ -60,7 +53,6 @@  #define CA_P    KC_P    // P  #define CA_CIRC KC_LBRC // ^ (dead)  #define CA_CCED KC_RBRC // Ç -// Row 3  #define CA_A    KC_A    // A  #define CA_S    KC_S    // S  #define CA_D    KC_D    // D @@ -73,7 +65,6 @@  #define CA_SCLN KC_SCLN // ;  #define CA_EGRV KC_QUOT // É  #define CA_AGRV KC_NUHS // À -// Row 4  #define CA_UGRV KC_NUBS // Ù  #define CA_Z    KC_Z    // Z  #define CA_X    KC_X    // X @@ -85,21 +76,6 @@  #define CA_COMM KC_COMM // ,  #define CA_DOT  KC_DOT  // .  #define CA_EACU KC_SLSH // É - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ \ │ ! │ @ │ # │ $ │ % │ ? │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ¨ │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ : │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ ' │ " │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CA_BSLS S(CA_SLSH) // (backslash)  #define CA_EXLM S(CA_1)    // !  #define CA_AT   S(CA_2)    // @ @@ -113,28 +89,10 @@  #define CA_RPRN S(CA_0)    // )  #define CA_UNDS S(CA_MINS) // _  #define CA_PLUS S(CA_EQL)  // + -// Row 2  #define CA_DIAE S(CA_CIRC) // ¨ (dead) -// Row 3  #define CA_COLN S(CA_SCLN) // : -// Row 4  #define CA_QUOT S(CA_COMM) // '  #define CA_DQUO S(CA_DOT)  // " - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ | │   │   │   │ ¤ │   │   │ { │ } │ [ │ ] │   │ ¬ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ ` │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ ° │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ « │ » │   │   │   │   │   │ < │ > │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CA_PIPE ALGR(CA_SLSH) // |  #define CA_CURR ALGR(CA_4)    // ¤  #define CA_LCBR ALGR(CA_7)    // { @@ -142,32 +100,14 @@  #define CA_LBRC ALGR(CA_9)    // [  #define CA_RBRC ALGR(CA_0)    // ]  #define CA_NOT  ALGR(CA_EQL)  // ¬ -// Row 2  #define CA_EURO ALGR(CA_E)    // €  #define CA_GRV  ALGR(CA_CIRC) // ` (dead)  #define CA_DTIL ALGR(CA_CCED) // ~ (dead) -// Row 3  #define CA_DEG  ALGR(CA_SCLN) // ° -// Row 4  #define CA_LDAQ ALGR(CA_Z)    // «  #define CA_RDAQ ALGR(CA_X)    // »  #define CA_LABK ALGR(CA_COMM) // <  #define CA_RABK ALGR(CA_DOT)  // > - -/* Right Ctrl symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¹ │ ² │ ³ │ ¼ │ ½ │ ¾ │   │   │   │   │   │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Ω │ Ł │ Œ │ ¶ │ Ŧ │ ← │ ↓ │ → │ Ø │ Þ │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Æ │ ß │ Ð │   │ Ŋ │ Ħ │ IJ │ ĸ │ Ŀ │ ´ │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │ ¢ │ “ │ ” │ ʼn │ μ │ ― │ ˙ │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CA_SUP1 RCTL(CA_1)    // ¹  #define CA_SUP2 RCTL(CA_2)    // ²  #define CA_SUP3 RCTL(CA_3)    // ³ @@ -175,7 +115,6 @@  #define CA_HALF RCTL(CA_5)    // ½  #define CA_TQTR RCTL(CA_6)    // ¾  #define CA_CEDL RCTL(CA_EQL)  // ¸ (dead) -// Row 2  #define CA_OMEG RCTL(CA_Q)    // Ω  #define CA_LSTR RCTL(CA_W)    // Ł  #define CA_OE   RCTL(CA_E)    // Œ @@ -187,7 +126,6 @@  #define CA_OSTR RCTL(CA_O)    // Ø  #define CA_THRN RCTL(CA_P)    // Þ  #define CA_TILD RCTL(CA_CCED) // ~ -// Row 3  #define CA_AE   RCTL(CA_A)    // Æ  #define CA_SS   RCTL(CA_S)    // ß  #define CA_ETH  RCTL(CA_D)    // Ð @@ -197,7 +135,6 @@  #define CA_KRA  RCTL(CA_K)    // ĸ  #define CA_LMDT RCTL(CA_L)    // Ŀ  #define CA_ACUT RCTL(CA_SCLN) // ´ (dead) -// Row 4  #define CA_CENT RCTL(CA_C)    // ¢  #define CA_LDQU RCTL(CA_V)    // “  #define CA_RDQU RCTL(CA_B)    // ” @@ -205,21 +142,6 @@  #define CA_MICR RCTL(CA_M)    // μ  #define CA_HRZB RCTL(CA_COMM) // ―  #define CA_DOTA RCTL(CA_DOT)  // ˙ (dead) - -/* Shift+Right Ctrl symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ - │ ¡ │   │ £ │   │ ⅜ │ ⅝ │ ⅞ │ ™ │ ± │   │ ¿ │ ˛ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │ ® │   │ ¥ │ ↑ │ ı │   │   │ ° │ ¯ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ § │   │ ª │   │   │   │   │   │ ˝ │ ˇ │ ˘ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ ¦ │   │   │ © │ ‘ │ ’ │ ♪ │ º │ × │ ÷ │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CA_SHYP RCTL(S(CA_SLSH)) //  (soft hyphen)  #define CA_IEXL RCTL(S(CA_1))    // ¡  #define CA_PND  RCTL(S(CA_3))    // £ @@ -230,20 +152,17 @@  #define CA_PLMN RCTL(S(CA_9))    // ±  #define CA_IQUE RCTL(S(CA_MINS)) // ¿  #define CA_OGON RCTL(S(CA_EQL))  // ˛ (dead) -// Row 2  #define CA_REGD RCTL(S(CA_R))    // ®  #define CA_YEN  RCTL(S(CA_Y))    // ¥  #define CA_UARR RCTL(S(CA_U))    // ↑  #define CA_DLSI RCTL(S(CA_I))    // ı  #define CA_RNGA RCTL(S(CA_CIRC)) // ° (dead)  #define CA_MACR RCTL(S(CA_CCED)) // ¯ (dead) -// Row 3  #define CA_SECT RCTL(S(CA_S))    // §  #define CA_FORD RCTL(S(CA_F))    // ª  #define CA_DACU RCTL(S(CA_SCLN)) // ˝ (dead)  #define CA_CARN RCTL(S(CA_EGRV)) // ˇ (dead)  #define CA_BREV RCTL(S(CA_AGRV)) // ˘ (dead) -// Row 4  #define CA_BRKP RCTL(S(CA_UGRV)) // ¦  #define CA_COPY RCTL(S(CA_C))    // ©  #define CA_LSQU RCTL(S(CA_V))    // ‘ @@ -252,3 +171,4 @@  #define CA_MORD RCTL(S(CA_M))    // º  #define CA_MUL  RCTL(S(CA_COMM)) // ×  #define CA_DIV  RCTL(S(CA_DOT))  // ÷ + diff --git a/quantum/keymap_extras/keymap_colemak.h b/quantum/keymap_extras/keymap_colemak.h index e7b5c97ccb..5cb86bf441 100644 --- a/quantum/keymap_extras/keymap_colemak.h +++ b/quantum/keymap_extras/keymap_colemak.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ F │ P │ G │ J │ L │ U │ Y │ ; │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ R │ S │ T │ D │ H │ N │ E │ I │ O │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ K │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define CM_GRV  KC_GRV  // `  #define CM_1    KC_1    // 1  #define CM_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define CM_0    KC_0    // 0  #define CM_MINS KC_MINS // -  #define CM_EQL  KC_EQL  // = -// Row 2  #define CM_Q    KC_Q    // Q  #define CM_W    KC_W    // W  #define CM_F    KC_E    // F @@ -61,7 +54,6 @@  #define CM_LBRC KC_LBRC // [  #define CM_RBRC KC_RBRC // ]  #define CM_BSLS KC_BSLS // (backslash) -// Row 3  #define CM_A    KC_A    // A  #define CM_R    KC_S    // R  #define CM_S    KC_D    // S @@ -73,7 +65,6 @@  #define CM_I    KC_L    // I  #define CM_O    KC_SCLN // O  #define CM_QUOT KC_QUOT // ' -// Row 4  #define CM_Z    KC_Z    // Z  #define CM_X    KC_X    // X  #define CM_C    KC_C    // C @@ -84,21 +75,6 @@  #define CM_COMM KC_COMM // ,  #define CM_DOT  KC_DOT  // .  #define CM_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │ : │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CM_TILD S(CM_GRV)  // ~  #define CM_EXLM S(CM_1)    // !  #define CM_AT   S(CM_2)    // @ @@ -112,14 +88,12 @@  #define CM_RPRN S(CM_0)    // )  #define CM_UNDS S(CM_MINS) // _  #define CM_PLUS S(CM_EQL)  // + -// Row 2  #define CM_COLN S(CM_SCLN) // :  #define CM_LCBR S(CM_LBRC) // {  #define CM_RCBR S(CM_RBRC) // }  #define CM_PIPE S(CM_BSLS) // | -// Row 3  #define CM_DQUO S(CM_QUOT) // " -// Row 4  #define CM_LABK S(CM_COMM) // <  #define CM_RABK S(CM_DOT)  // >  #define CM_QUES S(CM_SLSH) // ? + diff --git a/quantum/keymap_extras/keymap_croatian.h b/quantum/keymap_extras/keymap_croatian.h index e67b99a9a2..1115592e17 100644 --- a/quantum/keymap_extras/keymap_croatian.h +++ b/quantum/keymap_extras/keymap_croatian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¸ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Š │ Đ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Č │ Ć │ Ž │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define HR_CEDL KC_GRV  // ¸ (dead)  #define HR_1    KC_1    // 1  #define HR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define HR_0    KC_0    // 0  #define HR_QUOT KC_MINS // '  #define HR_PLUS KC_EQL  // + -// Row 2  #define HR_Q    KC_Q    // Q  #define HR_W    KC_W    // W  #define HR_E    KC_E    // E @@ -60,7 +53,6 @@  #define HR_P    KC_P    // P  #define HR_SCAR KC_LBRC // Š  #define HR_DSTR KC_RBRC // Đ -// Row 3  #define HR_A    KC_A    // A  #define HR_S    KC_S    // S  #define HR_D    KC_D    // D @@ -73,7 +65,6 @@  #define HR_CCAR KC_SCLN // Č  #define HR_CACU KC_QUOT // Ć  #define HR_ZCAR KC_NUHS // Ž -// Row 4  #define HR_LABK KC_NUBS // <  #define HR_Y    KC_Z    // Y  #define HR_X    KC_X    // X @@ -85,21 +76,6 @@  #define HR_COMM KC_COMM // ,  #define HR_DOT  KC_DOT  // .  #define HR_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¨ │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ * │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define HR_DIAE S(HR_CEDL) // ¨ (dead)  #define HR_EXLM S(HR_1)    // !  #define HR_DQUO S(HR_2)    // " @@ -113,26 +89,10 @@  #define HR_EQL  S(HR_0)    // =  #define HR_QUES S(HR_QUOT) // ?  #define HR_ASTR S(HR_PLUS) // * -// Row 4  #define HR_RABK S(HR_LABK) // >  #define HR_SCLN S(HR_COMM) // ;  #define HR_COLN S(HR_DOT)  // :  #define HR_UNDS S(HR_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ~ │ ˇ │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │ ´ │ ˝ │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ \ │ | │ € │   │   │   │   │   │   │   │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │ [ │ ] │   │   │ ł │ Ł │   │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │ @ │ { │ } │ § │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define HR_TILD ALGR(HR_1)    // ~  #define HR_CARN ALGR(HR_2)    // ˇ (dead)  #define HR_CIRC ALGR(HR_3)    // ^ (dead) @@ -143,21 +103,19 @@  #define HR_DOTA ALGR(HR_8)    // ˙ (dead)  #define HR_ACUT ALGR(HR_9)    // ´ (dead)  #define HR_DACU ALGR(HR_0)    // ˝ (dead) -// Row 2  #define HR_BSLS ALGR(HR_Q)    // (backslash)  #define HR_PIPE ALGR(HR_W)    // |  #define HR_EURO ALGR(HR_E)    // €  #define HR_DIV  ALGR(HR_SCAR) // ÷  #define HR_MUL  ALGR(HR_DSTR) // × -// Row 3  #define HR_LBRC ALGR(HR_F)    // [  #define HR_RBRC ALGR(HR_G)    // ]  #define HR_LLST ALGR(HR_K)    // ł  #define HR_CLST ALGR(HR_L)    // Ł  #define HR_SS   ALGR(HR_CACU) // ß  #define HR_CURR ALGR(HR_ZCAR) // ¤ -// Row 4  #define HR_AT   ALGR(HR_V)    // @  #define HR_LCBR ALGR(HR_B)    // {  #define HR_RCBR ALGR(HR_N)    // }  #define HR_SECT ALGR(HR_M)    // § + diff --git a/quantum/keymap_extras/keymap_czech.h b/quantum/keymap_extras/keymap_czech.h index a8f522d31c..02692002e3 100644 --- a/quantum/keymap_extras/keymap_czech.h +++ b/quantum/keymap_extras/keymap_czech.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ; │ + │ ě │ š │ č │ ř │ ž │ ý │ á │ í │ é │ = │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ ú │ ) │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ů │ § │ ¨ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define CZ_SCLN KC_GRV  // ;  #define CZ_PLUS KC_1    // +  #define CZ_ECAR KC_2    // ě @@ -47,7 +41,6 @@  #define CZ_EACU KC_0    // é  #define CZ_EQL  KC_MINS // =  #define CZ_ACUT KC_EQL  // ´ (dead) -// Row 2  #define CZ_Q    KC_Q    // Q  #define CZ_W    KC_W    // W  #define CZ_E    KC_E    // E @@ -60,7 +53,6 @@  #define CZ_P    KC_P    // P  #define CZ_UACU KC_LBRC // ú  #define CZ_RPRN KC_RBRC // ) -// Row 3  #define CZ_A    KC_A    // A  #define CZ_S    KC_S    // S  #define CZ_D    KC_D    // D @@ -73,7 +65,6 @@  #define CZ_URNG KC_SCLN // ů  #define CZ_SECT KC_QUOT // §  #define CZ_DIAE KC_NUHS // ¨ (dead) -// Row 4  #define CZ_BSLS KC_NUBS // (backslash)  #define CZ_Y    KC_Z    // Y  #define CZ_X    KC_X    // X @@ -85,21 +76,6 @@  #define CZ_COMM KC_COMM // ,  #define CZ_DOT  KC_DOT  // .  #define CZ_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ % │ ˇ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ / │ ( │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ " │ ! │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │   │ ? │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CZ_RNGA S(CZ_SCLN) // ° (dead)  #define CZ_1    S(CZ_PLUS) // 1  #define CZ_2    S(CZ_ECAR) // 2 @@ -113,33 +89,15 @@  #define CZ_0    S(CZ_EACU) // 0  #define CZ_PERC S(CZ_EQL)  // %  #define CZ_CARN S(CZ_ACUT) // ˇ (dead) -// Row 2  #define CZ_SLSH S(CZ_UACU) // /  #define CZ_LPRN S(CZ_RPRN) // ( -// Row 3  #define CZ_DQUO S(CZ_URNG) // "  #define CZ_EXLM S(CZ_SECT) // !  #define CZ_QUOT S(CZ_DIAE) // ' -// Row 4  #define CZ_PIPE S(CZ_BSLS) // |  #define CZ_QUES S(CZ_COMM) // ?  #define CZ_COLN S(CZ_DOT)  // :  #define CZ_UNDS S(CZ_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ~ │   │ ^ │ ˘ │   │ ˛ │ ` │ ˙ │   │ ˝ │   │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ đ │ Đ │ [ │ ] │   │   │ ł │ Ł │ $ │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │ # │ & │ @ │ { │ } │   │ < │ > │ * │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CZ_TILD ALGR(CZ_PLUS) // ~  #define CZ_CIRC ALGR(CZ_SCAR) // ^ (dead)  #define CZ_BREV ALGR(CZ_CCAR) // ˘ (dead) @@ -148,11 +106,9 @@  #define CZ_DOTA ALGR(CZ_AACU) // ˙ (dead)  #define CZ_DACU ALGR(CZ_EACU) // ˝ (dead)  #define CZ_CEDL ALGR(CZ_ACUT) // ¸ (dead) -// Row 2  #define CZ_EURO ALGR(CZ_E)    // €  #define CZ_DIV  ALGR(CZ_UACU) // ÷  #define CZ_MUL  ALGR(CZ_RPRN) // × -// Row 3  #define CZ_LDST ALGR(CZ_S)    // đ  #define CZ_CDST ALGR(CZ_D)    // Đ  #define CZ_LBRC ALGR(CZ_F)    // [ @@ -162,7 +118,6 @@  #define CZ_DLR  ALGR(CZ_URNG) // $  #define CZ_SS   ALGR(CZ_SECT) // ß  #define CZ_CURR ALGR(CZ_DIAE) // ¤ -// Row 4  #define CZ_HASH ALGR(CZ_X)    // #  #define CZ_AMPR ALGR(CZ_C)    // &  #define CZ_AT   ALGR(CZ_V)    // @ @@ -171,3 +126,4 @@  #define CZ_LABK ALGR(CZ_COMM) // <  #define CZ_RABK ALGR(CZ_DOT)  // >  #define CZ_ASTR ALGR(CZ_MINS) // * + diff --git a/quantum/keymap_extras/keymap_danish.h b/quantum/keymap_extras/keymap_danish.h index 9cf688d6f5..18107ccd53 100644 --- a/quantum/keymap_extras/keymap_danish.h +++ b/quantum/keymap_extras/keymap_danish.h @@ -1,39 +1,33 @@ -/* Copyright 2019 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ½ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Æ │ Ø │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DK_HALF KC_GRV  // ½  #define DK_1    KC_1    // 1  #define DK_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define DK_0    KC_0    // 0  #define DK_PLUS KC_MINS // +  #define DK_ACUT KC_EQL  // ´ (dead) -// Row 2  #define DK_Q    KC_Q    // Q  #define DK_W    KC_W    // W  #define DK_E    KC_E    // E @@ -60,7 +53,6 @@  #define DK_P    KC_P    // P  #define DK_ARNG KC_LBRC // Å  #define DK_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define DK_A    KC_A    // A  #define DK_S    KC_S    // S  #define DK_D    KC_D    // D @@ -73,7 +65,6 @@  #define DK_AE   KC_SCLN // Æ  #define DK_OSTR KC_QUOT // Ø  #define DK_QUOT KC_NUHS // ' -// Row 4  #define DK_LABK KC_NUBS // <  #define DK_Z    KC_Z    // Z  #define DK_X    KC_X    // X @@ -85,21 +76,6 @@  #define DK_COMM KC_COMM // ,  #define DK_DOT  KC_DOT  // .  #define DK_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ ! │ " │ # │ ¤ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DK_SECT S(DK_HALF) // §  #define DK_EXLM S(DK_1)    // !  #define DK_DQUO S(DK_2)    // " @@ -113,30 +89,12 @@  #define DK_EQL  S(DK_0)    // =  #define DK_QUES S(DK_PLUS) // ?  #define DK_GRV  S(DK_ACUT) // ` (dead) -// Row 2  #define DK_CIRC S(DK_DIAE) // ^ (dead) -// Row 3  #define DK_ASTR S(DK_QUOT) // * -// Row 4  #define DK_RABK S(DK_LABK) // >  #define DK_SCLN S(DK_COMM) // ;  #define DK_COLN S(DK_DOT)  // :  #define DK_UNDS S(DK_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ $ │ € │   │ { │ [ │ ] │ } │   │ | │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DK_AT   ALGR(DK_2)    // @  #define DK_PND  ALGR(DK_3)    // £  #define DK_DLR  ALGR(DK_4)    // $ @@ -146,8 +104,7 @@  #define DK_RBRC ALGR(DK_9)    // ]  #define DK_RCBR ALGR(DK_0)    // }  #define DK_PIPE ALGR(DK_ACUT) // | -// Row 2  #define DK_TILD ALGR(DK_DIAE) // ~ (dead) -// Row 4  #define DK_BSLS ALGR(DK_LABK) // (backslash)  #define DK_MICR ALGR(DK_M)    // µ + diff --git a/quantum/keymap_extras/keymap_dvorak.h b/quantum/keymap_extras/keymap_dvorak.h index 7aa112ebcc..5767530b3b 100644 --- a/quantum/keymap_extras/keymap_dvorak.h +++ b/quantum/keymap_extras/keymap_dvorak.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ [ │ ] │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ ' │ , │ . │ P │ Y │ F │ G │ C │ R │ L │ / │ = │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ O │ E │ U │ I │ D │ H │ T │ N │ S │ - │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ ; │ Q │ J │ K │ X │ B │ M │ W │ V │ Z │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DV_GRV  KC_GRV  // `  #define DV_1    KC_1    // 1  #define DV_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define DV_0    KC_0    // 0  #define DV_LBRC KC_MINS // [  #define DV_RBRC KC_EQL  // ] -// Row 2  #define DV_QUOT KC_Q    // '  #define DV_COMM KC_W    // ,  #define DV_DOT  KC_E    // . @@ -61,7 +54,6 @@  #define DV_SLSH KC_LBRC // /  #define DV_EQL  KC_RBRC // =  #define DV_BSLS KC_BSLS // (backslash) -// Row 3  #define DV_A    KC_A    // A  #define DV_O    KC_S    // O  #define DV_E    KC_D    // E @@ -73,7 +65,6 @@  #define DV_N    KC_L    // N  #define DV_S    KC_SCLN // S  #define DV_MINS KC_QUOT // - -// Row 4  #define DV_SCLN KC_Z    // ;  #define DV_Q    KC_X    // Q  #define DV_J    KC_C    // J @@ -84,21 +75,6 @@  #define DV_W    KC_COMM // W  #define DV_V    KC_DOT  // V  #define DV_Z    KC_SLSH // Z - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ { │ } │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ " │ < │ > │   │   │   │   │   │   │   │ ? │ + │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ _ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ : │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DV_TILD S(DV_GRV)  // ~  #define DV_EXLM S(DV_1)    // !  #define DV_AT   S(DV_2)    // @ @@ -112,14 +88,12 @@  #define DV_RPRN S(DV_0)    // )  #define DV_LCBR S(DV_LBRC) // {  #define DV_RCBR S(DV_RBRC) // } -// Row 2  #define DV_DQUO S(DV_QUOT) // "  #define DV_LABK S(DV_COMM) // <  #define DV_RABK S(DV_DOT)  // >  #define DV_QUES S(DV_SLSH) // ?  #define DV_PLUS S(DV_EQL)  // +  #define DV_PIPE S(DV_BSLS) // | -// Row 3  #define DV_UNDS S(DV_MINS) // _ -// Row 4  #define DV_COLN S(DV_SCLN) // : + diff --git a/quantum/keymap_extras/keymap_dvorak_fr.h b/quantum/keymap_extras/keymap_dvorak_fr.h index 2dee8e32e7..60675fbf13 100644 --- a/quantum/keymap_extras/keymap_dvorak_fr.h +++ b/quantum/keymap_extras/keymap_dvorak_fr.h @@ -1,47 +1,33 @@ -/* Copyright 2020 Guillaume Gérard - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -/* Dvorak for the French language - * Version: 2 - * - * The layout is designed by Francis Leboutte <dvorak-fr@algo.be> - * - * Source: https://algo.be/ergo/dvorak-fr.html - */ +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/  #pragma once -  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ « │ » │ / │ - │ è │ \ │ ^ │ ( │ ` │ ) │ _ │ [ │ ] │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ : │ ' │ é │ G │ . │ H │ V │ C │ M │ K │ Z │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ O │ A │ U │ E │ B │ F │ S │ T │ N │ D │ W │ ~ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ à │ ; │ Q │ , │ I │ Y │ X │ R │ L │ P │ J │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DV_LDAQ KC_GRV  // «  #define DV_RDAQ KC_1    // »  #define DV_SLSH KC_2    // / @@ -55,7 +41,6 @@  #define DV_UNDS KC_0    // _  #define DV_LBRC KC_MINS // [  #define DV_RBRC KC_EQL  // ] -// Row 2  #define DV_COLN KC_Q    // :  #define DV_QUOT KC_W    // '  #define DV_EACU KC_E    // é @@ -68,7 +53,6 @@  #define DV_K    KC_P    // K  #define DV_Z    KC_LBRC // Z  #define DV_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define DV_O    KC_A    // O  #define DV_A    KC_S    // A  #define DV_U    KC_D    // U @@ -81,7 +65,6 @@  #define DV_D    KC_SCLN // D  #define DV_W    KC_QUOT // W  #define DV_TILD KC_NUHS // ~ (dead) -// Row 4  #define DV_AGRV KC_NUBS // à  #define DV_SCLN KC_Z    // ;  #define DV_Q    KC_X    // Q @@ -93,21 +76,6 @@  #define DV_L    KC_COMM // L  #define DV_P    KC_DOT  // P  #define DV_J    KC_SLSH // J - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ * │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 0 │ 0 │ + │ % │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ ? │ < │ > │   │ ! │   │   │   │   │   │   │ = │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ # │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ ç │ | │   │ @ │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DV_ASTR S(DV_LDAQ) // *  #define DV_1    S(DV_RDAQ) // 1  #define DV_2    S(DV_SLSH) // 2 @@ -121,15 +89,13 @@  #define DV_0    S(DV_UNDS) // 0  #define DV_PLUS S(DV_LBRC) // +  #define DV_PERC S(DV_RBRC) // % -// Row 2  #define DV_QUES S(DV_COLN) // ?  #define DV_LABK S(DV_QUOT) // <  #define DV_RABK S(DV_EACU) // >  #define DV_EXLM S(DV_DOT)  // !  #define DV_EQL  S(DV_DIAE) // = -// Row 3  #define DV_HASH S(DV_TILD) // # -// Row 4  #define DV_CCED S(DV_AGRV) // ç  #define DV_PIPE S(DV_SCLN) // |  #define DV_AT   S(DV_COMM) // @ + diff --git a/quantum/keymap_extras/keymap_dvorak_programmer.h b/quantum/keymap_extras/keymap_dvorak_programmer.h index 6de7033cb4..6e1ae17807 100644 --- a/quantum/keymap_extras/keymap_dvorak_programmer.h +++ b/quantum/keymap_extras/keymap_dvorak_programmer.h @@ -1,39 +1,33 @@ -/* Copyright 2016 Artyom Mironov - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ $ │ & │ [ │ { │ } │ ( │ = │ * │ ) │ + │ ] │ ! │ # │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ ; │ , │ . │ P │ Y │ F │ G │ C │ R │ L │ / │ @ │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ O │ E │ U │ I │ D │ H │ T │ N │ S │ - │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ ' │ Q │ J │ K │ X │ B │ M │ W │ V │ Z │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DP_DLR  KC_GRV  // $  #define DP_AMPR KC_1    // &  #define DP_LBRC KC_2    // [ @@ -47,7 +41,6 @@  #define DP_RBRC KC_0    // ]  #define DP_EXLM KC_MINS // !  #define DP_HASH KC_EQL  // # -// Row 2  #define DP_SCLN KC_Q    // ;  #define DP_COMM KC_W    // ,  #define DP_DOT  KC_E    // . @@ -61,7 +54,6 @@  #define DP_SLSH KC_LBRC // /  #define DP_AT   KC_RBRC // @  #define DP_BSLS KC_BSLS // (backslash) -// Row 3  #define DP_A    KC_A    // A  #define DP_O    KC_S    // O  #define DP_E    KC_D    // E @@ -73,7 +65,6 @@  #define DP_N    KC_L    // N  #define DP_S    KC_SCLN // S  #define DP_MINS KC_QUOT // - -// Row 4  #define DP_QUOT KC_Z    // '  #define DP_Q    KC_X    // Q  #define DP_J    KC_C    // J @@ -84,21 +75,6 @@  #define DP_W    KC_COMM // W  #define DP_V    KC_DOT  // V  #define DP_Z    KC_SLSH // Z - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ % │ 7 │ 5 │ 3 │ 1 │ 9 │ 0 │ 2 │ 4 │ 6 │ 8 │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ : │ < │ > │   │   │   │   │   │   │   │ ? │ ^ │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ _ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ " │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DP_TILD S(DP_DLR)  // ~  #define DP_PERC S(DP_AMPR) // %  #define DP_7    S(DP_LBRC) // 7 @@ -112,14 +88,12 @@  #define DP_6    S(DP_RBRC) // 6  #define DP_8    S(DP_EXLM) // 8  #define DP_GRV  S(DP_HASH) // ` -// Row 2  #define DP_COLN S(DP_SCLN) // :  #define DP_LABK S(DP_COMM) // <  #define DP_RABK S(DP_DOT)  // >  #define DP_QUES S(DP_SLSH) // ?  #define DP_CIRC S(DP_AT)   // ^  #define DP_PIPE S(DP_BSLS) // | -// Row 3  #define DP_UNDS S(DP_MINS) // _ -// Row 4  #define DP_DQUO S(DP_QUOT) // " + diff --git a/quantum/keymap_extras/keymap_estonian.h b/quantum/keymap_extras/keymap_estonian.h index 6951baed5a..462bcde429 100644 --- a/quantum/keymap_extras/keymap_estonian.h +++ b/quantum/keymap_extras/keymap_estonian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ˇ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Ü │ Õ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define EE_CARN KC_GRV  // ˇ (dead)  #define EE_1    KC_1    // 1  #define EE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define EE_0    KC_0    // 0  #define EE_PLUS KC_MINS // +  #define EE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define EE_Q    KC_Q    // Q  #define EE_W    KC_W    // W  #define EE_E    KC_E    // E @@ -60,7 +53,6 @@  #define EE_P    KC_P    // P  #define EE_UDIA KC_LBRC // Ü  #define EE_OTIL KC_RBRC // Õ -// Row 3  #define EE_A    KC_A    // A  #define EE_S    KC_S    // S  #define EE_D    KC_D    // D @@ -73,7 +65,6 @@  #define EE_ODIA KC_SCLN // Ö  #define EE_ADIA KC_QUOT // Ä  #define EE_QUOT KC_NUHS // ' -// Row 4  #define EE_LABK KC_NUBS // <  #define EE_Z    KC_Z    // Z  #define EE_X    KC_X    // X @@ -85,21 +76,6 @@  #define EE_COMM KC_COMM // ,  #define EE_DOT  KC_DOT  // .  #define EE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ " │ # │ ¤ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define EE_TILD S(EE_CARN) // ~ (dead)  #define EE_EXLM S(EE_1)    // !  #define EE_DQUO S(EE_2)    // " @@ -113,28 +89,11 @@  #define EE_EQL  S(EE_0)    // =  #define EE_QUES S(EE_PLUS) // ?  #define EE_GRV  S(EE_ACUT) // ` (dead) -// Row 3  #define EE_ASTR S(EE_QUOT) // * -// Row 4  #define EE_RABK S(EE_LABK) // >  #define EE_SCLN S(EE_COMM) // ;  #define EE_COLN S(EE_DOT)  // :  #define EE_UNDS S(EE_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ $ │ € │   │ { │ [ │ ] │ } │ \ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ § │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ š │   │   │   │   │   │   │   │   │ ^ │ ½ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │ ž │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define EE_AT   ALGR(EE_2)    // @  #define EE_PND  ALGR(EE_3)    // £  #define EE_DLR  ALGR(EE_4)    // $ @@ -144,12 +103,10 @@  #define EE_RBRC ALGR(EE_9)    // ]  #define EE_RCBR ALGR(EE_0)    // }  #define EE_BSLS ALGR(EE_PLUS) // (backslash) -// Row 2  #define EE_SECT ALGR(EE_OTIL) // § -// Row 3  #define EE_SCAR ALGR(EE_S)    // š  #define EE_CIRC ALGR(EE_ADIA) // ^ (dead)  #define EE_HALF ALGR(EE_QUOT) // ½ -// Row 4  #define EE_PIPE ALGR(EE_LABK) // |  #define EE_ZCAR ALGR(EE_Z)    // ž + diff --git a/quantum/keymap_extras/keymap_finnish.h b/quantum/keymap_extras/keymap_finnish.h index faca4e01d4..7e94896e2e 100644 --- a/quantum/keymap_extras/keymap_finnish.h +++ b/quantum/keymap_extras/keymap_finnish.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define FI_SECT KC_GRV  // §  #define FI_1    KC_1    // 1  #define FI_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define FI_0    KC_0    // 0  #define FI_PLUS KC_MINS // +  #define FI_ACUT KC_EQL  // ´ (dead) -// Row 2  #define FI_Q    KC_Q    // Q  #define FI_W    KC_W    // W  #define FI_E    KC_E    // E @@ -60,7 +53,6 @@  #define FI_P    KC_P    // P  #define FI_ARNG KC_LBRC // Å  #define FI_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define FI_A    KC_A    // A  #define FI_S    KC_S    // S  #define FI_D    KC_D    // D @@ -73,7 +65,6 @@  #define FI_ODIA KC_SCLN // Ö  #define FI_ADIA KC_QUOT // Ä  #define FI_QUOT KC_NUHS // ' -// Row 4  #define FI_LABK KC_NUBS // <  #define FI_Z    KC_Z    // Z  #define FI_X    KC_X    // X @@ -85,21 +76,6 @@  #define FI_COMM KC_COMM // ,  #define FI_DOT  KC_DOT  // .  #define FI_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ½ │ ! │ " │ # │ ¤ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FI_HALF S(FI_SECT) // ½  #define FI_EXLM S(FI_1)    // !  #define FI_DQUO S(FI_2)    // " @@ -113,30 +89,12 @@  #define FI_EQL  S(FI_0)    // =  #define FI_QUES S(FI_PLUS) // ?  #define FI_GRV  S(FI_ACUT) // ` (dead) -// Row 2  #define FI_CIRC S(FI_DIAE) // ^ (dead) -// Row 3  #define FI_ASTR S(FI_QUOT) // * -// Row 4  #define FI_RABK S(FI_LABK) // >  #define FI_SCLN S(FI_COMM) // ;  #define FI_COLN S(FI_DOT)  // :  #define FI_UNDS S(FI_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ $ │ € │   │ { │ [ │ ] │ } │ \ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FI_AT   ALGR(FI_2)    // @  #define FI_PND  ALGR(FI_3)    // £  #define FI_DLR  ALGR(FI_4)    // $ @@ -146,8 +104,7 @@  #define FI_RBRC ALGR(FI_9)    // ]  #define FI_RCBR ALGR(FI_0)    // }  #define FI_BSLS ALGR(FI_PLUS) // (backslash) -// Row 2  #define FI_TILD ALGR(FI_DIAE) // ~ (dead) -// Row 4  #define FI_PIPE ALGR(FI_LABK) // |  #define FI_MICR ALGR(FI_M)    // µ + diff --git a/quantum/keymap_extras/keymap_french.h b/quantum/keymap_extras/keymap_french.h index 0be53f0a9c..da9467a475 100644 --- a/quantum/keymap_extras/keymap_french.h +++ b/quantum/keymap_extras/keymap_french.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ² │ & │ é │ " │ ' │ ( │ - │ è │ _ │ ç │ à │ ) │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ A │ Z │ E │ R │ T │ Y │ U │ I │ O │ P │ ^ │ $ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Q │ S │ D │ F │ G │ H │ J │ K │ L │ M │ ù │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ W │ X │ C │ V │ B │ N │ , │ ; │ : │ ! │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define FR_SUP2 KC_GRV  // ²  #define FR_AMPR KC_1    // &  #define FR_EACU KC_2    // é @@ -47,7 +41,6 @@  #define FR_AGRV KC_0    // à  #define FR_RPRN KC_MINS // )  #define FR_EQL  KC_EQL  // = -// Row 2  #define FR_A    KC_Q    // A  #define FR_Z    KC_W    // Z  #define FR_E    KC_E    // E @@ -60,7 +53,6 @@  #define FR_P    KC_P    // P  #define FR_CIRC KC_LBRC // ^ (dead)  #define FR_DLR  KC_RBRC // $ -// Row 3  #define FR_Q    KC_A    // Q  #define FR_S    KC_S    // S  #define FR_D    KC_D    // D @@ -73,7 +65,6 @@  #define FR_M    KC_SCLN // M  #define FR_UGRV KC_QUOT // ù  #define FR_ASTR KC_NUHS // * -// Row 4  #define FR_LABK KC_NUBS // <  #define FR_W    KC_Z    // W  #define FR_X    KC_X    // X @@ -85,21 +76,6 @@  #define FR_SCLN KC_COMM // ;  #define FR_COLN KC_DOT  // :  #define FR_EXLM KC_SLSH // ! - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ° │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ¨ │ £ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ % │ µ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │ ? │ . │ / │ § │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FR_1    S(FR_AMPR) // 1  #define FR_2    S(FR_EACU) // 2  #define FR_3    S(FR_DQUO) // 3 @@ -112,33 +88,15 @@  #define FR_0    S(FR_AGRV) // 0  #define FR_DEG  S(FR_RPRN) // °  #define FR_PLUS S(FR_EQL)  // + -// Row 2  #define FR_DIAE S(FR_CIRC) // ¨ (dead)  #define FR_PND  S(FR_DLR)  // £ -// Row 3  #define FR_PERC S(FR_UGRV) // %  #define FR_MICR S(FR_ASTR) // µ -// Row 4  #define FR_RABK S(FR_LABK) // >  #define FR_QUES S(FR_COMM) // ?  #define FR_DOT  S(FR_SCLN) // .  #define FR_SLSH S(FR_COLN) // /  #define FR_SECT S(FR_EXLM) // § - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ ~ │ # │ { │ [ │ | │ ` │ \ │   │ @ │ ] │ } │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │   │ ¤ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FR_TILD ALGR(FR_EACU) // ~ (dead)  #define FR_HASH ALGR(FR_DQUO) // #  #define FR_LCBR ALGR(FR_QUOT) // { @@ -149,6 +107,6 @@  #define FR_AT   ALGR(FR_AGRV) // @  #define FR_RBRC ALGR(FR_RPRN) // ]  #define FR_RCBR ALGR(FR_EQL)  // } -// Row 2 -#define FR_EURO ALGR(KC_E)   // € -#define FR_CURR ALGR(FR_DLR) // ¤ +#define FR_EURO ALGR(KC_E)    // € +#define FR_CURR ALGR(FR_DLR)  // ¤ + diff --git a/quantum/keymap_extras/keymap_french_afnor.h b/quantum/keymap_extras/keymap_french_afnor.h index 4b7961724f..259e0a30f4 100644 --- a/quantum/keymap_extras/keymap_french_afnor.h +++ b/quantum/keymap_extras/keymap_french_afnor.h @@ -1,63 +1,33 @@ -/* Copyright 2020 Guillaume Gérard - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -/* French AZERTY - AFNOR NF Z71-300 - * - * A standard for the French keyboard - * - * The project was launched at the end of 2015 on the proposal of the General - * Delegation for the French language and the languages of France (Ministry - * of Culture), starting from the observation that the current "azerty" - * keyboards constrain the writing of French, languages regional and European - * languages with Latin alphabet. - * - * For the first time, a standard (NF Z71-300) defines the placement of - * characters on the French keyboard. It offers two layouts, one of which - * closely follows the QWERTY keyboard used by most people who write in French. - * - * However, it is in many ways superior to the old keyboard: - * - * - it contains all the characters required to enter text in French (for example É, œ and ") - * - it is designed to be more ergonomic and allow faster typing - * - it includes almost 60 additional characters for entering foreign languages, technical content, etc - * - however, the characters remain easy to locate thanks to intuitive groupings - * - * Source: https://norme-azerty.fr - */ +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/  #pragma once -  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ @ │ à │ é │ è │ ê │ ( │ ) │ ‘ │ ’ │ « │ » │ ' │ ^ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ A │ Z │ E │ R │ T │ Y │ U │ I │ O │ P │ - │ + │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Q │ S │ D │ F │ G │ H │ J │ K │ L │ M │ / │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ W │ X │ C │ V │ B │ N │ . │ , │ : │ ; │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define FR_AT   KC_GRV  // @  #define FR_AGRV KC_1    // à  #define FR_EACU KC_2    // é @@ -71,7 +41,6 @@  #define FR_RDAQ KC_0    // »  #define FR_QUOT KC_MINS // '  #define FR_DCIR KC_EQL  // ^ (dead) -// Row 2  #define FR_A    KC_Q    // A  #define FR_Z    KC_W    // Z  #define FR_E    KC_E    // E @@ -84,7 +53,6 @@  #define FR_P    KC_P    // P  #define FR_MINS KC_LBRC // -  #define FR_PLUS KC_RBRC // + -// Row 3  #define FR_Q    KC_A    // Q  #define FR_S    KC_S    // S  #define FR_D    KC_D    // D @@ -97,7 +65,6 @@  #define FR_M    KC_SCLN // M  #define FR_SLSH KC_QUOT // /  #define FR_ASTR KC_NUHS // * -// Row 4  #define FR_LABK KC_NUBS // <  #define FR_W    KC_Z    // W  #define FR_X    KC_X    // X @@ -109,21 +76,6 @@  #define FR_COMM KC_COMM // ,  #define FR_COLN KC_DOT  // :  #define FR_SCLN KC_SLSH // ; - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ # │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ " │ ¨ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ – │ ± │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ \ │ ½ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │ ? │ ! │ … │ = │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FR_HASH S(FR_AT)   // #  #define FR_1    S(FR_AGRV) // 1  #define FR_2    S(FR_EACU) // 2 @@ -137,33 +89,15 @@  #define FR_0    S(FR_RDAQ) // 0  #define FR_DQUO S(FR_QUOT) // "  #define FR_DIAE S(FR_DCIR) // ¨ (dead) -// Row 2  #define FR_NDSH S(FR_MINS) // –  #define FR_PLMN S(FR_PLUS) // ± -// Row 3  #define FR_BSLS S(FR_SLSH) // (backslash)  #define FR_HALF S(FR_ASTR) // ½ -// Row 4  #define FR_RABK S(FR_LABK) // >  #define FR_QUES S(FR_DOT)  // ?  #define FR_EXLM S(FR_COMM) // !  #define FR_ELLP S(FR_COLN) // …  #define FR_EQL  S(FR_SCLN) // = - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ˘ │ § │ ´ │ ` │ & │ [ │ ] │ ¯ │ _ │ “ │ ” │ ° │ ˇ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ æ │ £ │ € │ ® │ { │ } │ ù │ ˙ │ œ │ % │ − │ † │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ θ │ ß │ $ │ ¤ │ µ │ Eu│   │ ∕ │ | │ ∞ │ ÷ │ × │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ ≤ │ ʒ │ © │ ç │ ¸ │ − │ ~ │ ¿ │ ¡ │ · │ ≃ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define FR_BREV ALGR(FR_AT)   // ˘ (dead)  #define FR_SECT ALGR(FR_AGRV) // §  #define FR_ACUT ALGR(FR_EACU) // ´ (dead) @@ -177,7 +111,6 @@  #define FR_RDQU ALGR(FR_RDAQ) // ”  #define FR_DEG  ALGR(FR_QUOT) // °  #define FR_CARN ALGR(FR_DCIR) // ˇ (dead) -// Row 2  #define FR_AE   ALGR(FR_A)    // æ  #define FR_PND  ALGR(FR_Z)    // £  #define FR_EURO ALGR(FR_E)    // € @@ -190,7 +123,6 @@  #define FR_PERC ALGR(FR_P)    // %  #define FR_MMNS ALGR(FR_MINS) // −  #define FR_DAGG ALGR(FR_PLUS) // † -// Row 3  #define FR_THET ALGR(FR_Q)    // θ  #define FR_SS   ALGR(FR_S)    // ß  #define FR_DLR  ALGR(FR_D)    // $ @@ -202,7 +134,6 @@  #define FR_INFN ALGR(FR_M)    // ∞  #define FR_DIV  ALGR(FR_SLSH) // ÷  #define FR_MUL  ALGR(FR_ASTR) // × -// Row 4  #define FR_LEQL ALGR(FR_LABK) // ≤  #define FR_EZH  ALGR(FR_W)    // ʒ  #define FR_COPY ALGR(FR_X)    // © @@ -214,40 +145,23 @@  #define FR_IEXL ALGR(FR_COMM) // ¡  #define FR_MDDT ALGR(FR_COLN) // ·  #define FR_AEQL ALGR(FR_SCLN) // ≃ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ̑  │   │   │   │   │ ˝ │ ̏  │   │ — │ ‹ │ › │ ˚ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │ ™ │   │   │ ̣  │   │ ‰ │ ‑ │ ‡ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │ ˍ │   │   │   │   │ √ │ ¼ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ ≥ │   │   │   │ ˛ │   │   │   │ ̦  │   │ ≠ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 -#define FR_IBRV S(ALGR(FR_AT))   // ̑  (dead) +#define FR_IBRV S(ALGR(FR_AT))   // ̑ (dead)  #define FR_DACU S(ALGR(FR_LPRN)) // ˝ (dead) -#define FR_DGRV S(ALGR(FR_RPRN)) // ̏  (dead) +#define FR_DGRV S(ALGR(FR_RPRN)) // ̏ (dead)  #define FR_MDSH S(ALGR(FR_RSQU)) // —  #define FR_LSAQ S(ALGR(FR_LDAQ)) // ‹  #define FR_RSAQ S(ALGR(FR_RDAQ)) // ›  #define FR_RNGA S(ALGR(FR_QUOT)) // ˚ (dead) -// Row 2  #define FR_TM   S(ALGR(FR_T))    // ™ -#define FR_DOTB S(ALGR(FR_I))    // ̣  (dead) +#define FR_DOTB S(ALGR(FR_I))    // ̣ (dead)  #define FR_PERM S(ALGR(FR_P))    // ‰  #define FR_NBHY S(ALGR(FR_MINS)) // ‑ (non-breaking hyphen)  #define FR_DDAG S(ALGR(FR_PLUS)) // ‡ -// Row 3  #define FR_MACB S(ALGR(FR_H))    // ˍ (dead)  #define FR_SQRT S(ALGR(FR_SLSH)) // √  #define FR_QRTR S(ALGR(FR_ASTR)) // ¼ -// Row 4  #define FR_GEQL S(ALGR(FR_LABK)) // ≥  #define FR_OGON S(ALGR(FR_V))    // ˛ (dead) -#define FR_DCMM S(ALGR(FR_COMM)) // ̦  (dead) +#define FR_DCMM S(ALGR(FR_COMM)) // ̦ (dead)  #define FR_NEQL S(ALGR(FR_SCLN)) // ≠ + diff --git a/quantum/keymap_extras/keymap_french_mac_iso.h b/quantum/keymap_extras/keymap_french_mac_iso.h index 590a57e55c..9a8ed72604 100644 --- a/quantum/keymap_extras/keymap_french_mac_iso.h +++ b/quantum/keymap_extras/keymap_french_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2016 Sébastien Pérochon - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ @ │ & │ é │ " │ ' │ ( │ § │ è │ ! │ ç │ à │ ) │ - │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ A │ Z │ E │ R │ T │ Y │ U │ I │ O │ P │ ^ │ $ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ Q │ S │ D │ F │ G │ H │ J │ K │ L │ M │ ù │ ` │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ W │ X │ C │ V │ B │ N │ , │ ; │ : │ = │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define FR_AT   KC_GRV  // @  #define FR_AMPR KC_1    // &  #define FR_LEAC KC_2    // é @@ -47,7 +41,6 @@  #define FR_LAGR KC_0    // à  #define FR_RPRN KC_MINS // )  #define FR_MINS KC_EQL  // - -// Row 2  #define FR_A    KC_Q    // A  #define FR_Z    KC_W    // Z  #define FR_E    KC_E    // E @@ -60,7 +53,6 @@  #define FR_P    KC_P    // P  #define FR_CIRC KC_LBRC // ^  #define FR_DLR  KC_RBRC // $ -// Row 3  #define FR_Q    KC_A    // Q  #define FR_S    KC_S    // S  #define FR_D    KC_D    // D @@ -73,7 +65,6 @@  #define FR_M    KC_SCLN // M  #define FR_LUGR KC_QUOT // ù  #define FR_GRV  KC_NUHS // ` -// Row 4  #define FR_LABK KC_NUBS // <  #define FR_W    KC_Z    // W  #define FR_X    KC_X    // X @@ -85,21 +76,6 @@  #define FR_SCLN KC_COMM // ;  #define FR_COLN KC_DOT  // :  #define FR_EQL  KC_SLSH // = - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ # │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ° │ _ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ¨ │ * │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │   │ % │ £ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │ ? │ . │ / │ + │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define FR_HASH S(FR_AT)   // #  #define FR_1    S(FR_AMPR) // 1  #define FR_2    S(FR_LEAC) // 2 @@ -113,33 +89,15 @@  #define FR_0    S(FR_LAGR) // 0  #define FR_DEG  S(FR_RPRN) // °  #define FR_UNDS S(FR_MINS) // _ -// Row 2  #define FR_DIAE S(FR_CIRC) // ¨ (dead)  #define FR_ASTR S(FR_DLR)  // * -// Row 3  #define FR_PERC S(FR_LUGR) // %  #define FR_PND  S(FR_GRV)  // £ -// Row 4  #define FR_RABK S(FR_LABK) // >  #define FR_QUES S(FR_COMM) // ?  #define FR_DOT  S(FR_SCLN) // .  #define FR_SLSH S(FR_COLN) // /  #define FR_PLUS S(FR_EQL)  // + - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ • │  │ ë │ “ │ ‘ │ { │ ¶ │ « │ ¡ │ Ç │ Ø │ } │ — │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Æ │  │ Ê │ ® │ † │ Ú │ º │ î │ Œ │ π │ Ô │ € │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ ‡ │ Ò │ ∂ │ ƒ │ fi │ Ì │ Ï │ È │ ¬ │ µ │ Ù │   │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ ‹ │ ≈ │ © │ ◊ │ ß │ ~ │ ∞ │ … │ ÷ │ ≠ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define FR_BULT A(FR_AT)   // •  #define FR_APPL A(FR_AMPR) //  (Apple logo)  #define FR_LEDI A(FR_LEAC) // ë @@ -153,7 +111,6 @@  #define FR_OSTR A(FR_LAGR) // Ø  #define FR_RCBR A(FR_RPRN) // }  #define FR_MDSH A(FR_MINS) // — -// Row 2  #define FR_AE   A(FR_A)    // Æ  #define FR_CACI A(FR_Z)    //   #define FR_ECIR A(FR_E)    // Ê @@ -166,7 +123,6 @@  #define FR_PI   A(FR_P)    // π  #define FR_OCIR A(FR_CIRC) // Ô  #define FR_EURO A(FR_DLR)  // € -// Row 3  #define FR_DDAG A(FR_Q)    // ‡  #define FR_COGR A(FR_S)    // Ò  #define FR_PDIF A(FR_D)    // ∂ @@ -178,7 +134,6 @@  #define FR_NOT  A(FR_L)    // ¬  #define FR_MICR A(FR_M)    // µ  #define FR_CUGR A(FR_LUGR) // Ù -// Row 4  #define FR_LTEQ A(FR_LABK) // ≤  #define FR_LSAQ A(FR_W)    // ‹  #define FR_AEQL A(FR_X)    // ≈ @@ -190,21 +145,6 @@  #define FR_ELLP A(FR_SCLN) // …  #define FR_DIV  A(FR_COLN) // ÷  #define FR_NEQL A(FR_EQL)  // ≠ - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ Ÿ │ ´ │ „ │   │   │ [ │ å │ » │ Û │ Á │   │ ] │ – │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │ Å │   │ ‚ │ ™ │   │ ª │ ï │   │ ∏ │   │ ¥ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ Ω │ ∑ │ ∆ │ · │ fl │ Î │ Í │ Ë │ | │ Ó │ ‰ │   │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │ › │ ⁄ │ ¢ │ √ │ ∫ │ ı │ ¿ │   │ \ │ ± │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define FR_CYDI S(A(FR_AT))   // Ÿ  #define FR_ACUT S(A(FR_AMPR)) // ´ (dead)  #define FR_DLQU S(A(FR_LEAC)) // „ @@ -215,7 +155,6 @@  #define FR_CAAC S(A(FR_LCCE)) // Á  #define FR_RBRC S(A(FR_RPRN)) // ]  #define FR_NDSH S(A(FR_MINS)) // – -// Row 2  #define FR_CARI S(A(FR_Z))    // Å  #define FR_SLQU S(A(FR_R))    // ‚  #define FR_TM   S(A(FR_T))    // ™ @@ -223,7 +162,6 @@  #define FR_LIDI S(A(FR_I))    // ï  #define FR_NARP S(A(FR_P))    // ∏  #define FR_YEN  S(A(FR_DLR))  // ¥ -// Row 3  #define FR_OMEG S(A(FR_Q))    // Ω  #define FR_NARS S(A(FR_S))    // ∑  #define FR_INCR S(A(FR_D))    // ∆ @@ -235,7 +173,6 @@  #define FR_PIPE S(A(FR_L))    // |  #define FR_COAC S(A(FR_M))    // Ó  #define FR_PERM S(A(FR_LUGR)) // ‰ -// Row 4  #define FR_GTEQ S(A(FR_LABK)) // ≥  #define FR_RSAQ S(A(FR_W))    // ›  #define FR_FRSL S(A(FR_X))    // ⁄ @@ -246,3 +183,4 @@  #define FR_IQUE S(A(FR_COMM)) // ¿  #define FR_BSLS S(A(FR_COLN)) // (backslash)  #define FR_PLMN S(A(FR_EQL))  // ± + diff --git a/quantum/keymap_extras/keymap_german.h b/quantum/keymap_extras/keymap_german.h index 085995b0c6..251491fb81 100644 --- a/quantum/keymap_extras/keymap_german.h +++ b/quantum/keymap_extras/keymap_german.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Matthias Schmidtt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ^ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ß │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Ü │ + │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ # │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DE_CIRC KC_GRV  // ^ (dead)  #define DE_1    KC_1    // 1  #define DE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define DE_0    KC_0    // 0  #define DE_SS   KC_MINS // ß  #define DE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define DE_Q    KC_Q    // Q  #define DE_W    KC_W    // W  #define DE_E    KC_E    // E @@ -60,7 +53,6 @@  #define DE_P    KC_P    // P  #define DE_UDIA KC_LBRC // Ü  #define DE_PLUS KC_RBRC // + -// Row 3  #define DE_A    KC_A    // A  #define DE_S    KC_S    // S  #define DE_D    KC_D    // D @@ -73,7 +65,6 @@  #define DE_ODIA KC_SCLN // Ö  #define DE_ADIA KC_QUOT // Ä  #define DE_HASH KC_NUHS // # -// Row 4  #define DE_LABK KC_NUBS // <  #define DE_Y    KC_Z    // Y  #define DE_X    KC_X    // X @@ -85,21 +76,6 @@  #define DE_COMM KC_COMM // ,  #define DE_DOT  KC_DOT  // .  #define DE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ ! │ " │ § │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ * │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DE_DEG  S(DE_CIRC) // °  #define DE_EXLM S(DE_1)    // !  #define DE_DQUO S(DE_2)    // " @@ -113,30 +89,12 @@  #define DE_EQL  S(DE_0)    // =  #define DE_QUES S(DE_SS)   // ?  #define DE_GRV  S(DE_ACUT) // ` (dead) -// Row 2  #define DE_ASTR S(DE_PLUS) // * -// Row 3  #define DE_QUOT S(DE_HASH) // ' -// Row 4  #define DE_RABK S(DE_LABK) // >  #define DE_SCLN S(DE_COMM) // ;  #define DE_COLN S(DE_DOT)  // :  #define DE_UNDS S(DE_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ ² │ ³ │   │   │   │ { │ [ │ ] │ } │ \ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ @ │   │ € │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DE_SUP2 ALGR(DE_2)    // ²  #define DE_SUP3 ALGR(DE_3)    // ³  #define DE_LCBR ALGR(DE_7)    // { @@ -144,10 +102,9 @@  #define DE_RBRC ALGR(DE_9)    // ]  #define DE_RCBR ALGR(DE_0)    // }  #define DE_BSLS ALGR(DE_SS)   // (backslash) -// Row 2  #define DE_AT   ALGR(DE_Q)    // @  #define DE_EURO ALGR(DE_E)    // €  #define DE_TILD ALGR(DE_PLUS) // ~ -// Row 4  #define DE_PIPE ALGR(DE_LABK) // |  #define DE_MICR ALGR(DE_M)    // µ + diff --git a/quantum/keymap_extras/keymap_german_mac_iso.h b/quantum/keymap_extras/keymap_german_mac_iso.h index 82404fa5fd..de7b60546b 100644 --- a/quantum/keymap_extras/keymap_german_mac_iso.h +++ b/quantum/keymap_extras/keymap_german_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2016 Stephen Bösebeck - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ^ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ß │ ´ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Ü │ + │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ # │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define DE_CIRC KC_GRV  // ^ (dead)  #define DE_1    KC_1    // 1  #define DE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define DE_0    KC_0    // 0  #define DE_SS   KC_MINS // ß  #define DE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define DE_Q    KC_Q    // Q  #define DE_W    KC_W    // W  #define DE_E    KC_E    // E @@ -60,7 +53,6 @@  #define DE_P    KC_P    // P  #define DE_UDIA KC_LBRC // Ü  #define DE_PLUS KC_RBRC // + -// Row 3  #define DE_A    KC_A    // A  #define DE_S    KC_S    // S  #define DE_D    KC_D    // D @@ -73,7 +65,6 @@  #define DE_ODIA KC_SCLN // Ö  #define DE_ADIA KC_QUOT // Ä  #define DE_HASH KC_NUHS // # -// Row 4  #define DE_LABK KC_NUBS // <  #define DE_Y    KC_Z    // Y  #define DE_X    KC_X    // X @@ -85,21 +76,6 @@  #define DE_COMM KC_COMM // ,  #define DE_DOT  KC_DOT  // .  #define DE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ° │ ! │ " │ § │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ * │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ ' │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define DE_DEG  S(DE_CIRC) // °  #define DE_EXLM S(DE_1)    // !  #define DE_DQUO S(DE_2)    // " @@ -113,30 +89,12 @@  #define DE_EQL  S(DE_0)    // =  #define DE_QUES S(DE_SS)   // ?  #define DE_GRV  S(DE_ACUT) // ` (dead) -// Row 2  #define DE_ASTR S(DE_PLUS) // * -// Row 3  #define DE_QUOT S(DE_HASH) // ' -// Row 4  #define DE_RABK S(DE_LABK) // >  #define DE_SCLN S(DE_COMM) // ;  #define DE_COLN S(DE_DOT)  // :  #define DE_UNDS S(DE_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ „ │ ¡ │ “ │ ¶ │ ¢ │ [ │ ] │ | │ { │ } │ ≠ │ ¿ │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ « │ ∑ │ € │ ® │ † │ Ω │ ¨ │ ⁄ │ Ø │ π │ • │ ± │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ Å │ ‚ │ ∂ │ ƒ │ © │ ª │ º │ ∆ │ @ │ Œ │ Æ │ ‘ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ ¥ │ ≈ │ Ç │ √ │ ∫ │ ~ │ µ │ ∞ │ … │ – │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define DE_DLQU A(DE_CIRC) // „  #define DE_IEXL A(DE_1)    // ¡  #define DE_LDQU A(DE_2)    // “ @@ -149,7 +107,6 @@  #define DE_RCBR A(DE_9)    // }  #define DE_NEQL A(DE_0)    // ≠  #define DE_IQUE A(DE_SS)   // ¿ -// Row 2  #define DE_LDAQ A(DE_Q)    // «  #define DE_NARS A(DE_W)    // ∑  #define DE_EURO A(DE_E)    // € @@ -162,7 +119,6 @@  #define DE_PI   A(DE_P)    // π  #define DE_BULT A(DE_UDIA) // •  #define DE_PLMN A(DE_PLUS) // ± -// Row 3  #define DE_ARNG A(DE_A)    // Å  #define DE_SLQU A(DE_S)    // ‚  #define DE_PDIF A(DE_D)    // ∂ @@ -175,7 +131,6 @@  #define DE_OE   A(DE_ODIA) // Œ  #define DE_AE   A(DE_ADIA) // Æ  #define DE_LSQU A(DE_HASH) // ‘ -// Row 4  #define DE_LTEQ A(DE_LABK) // ≤  #define DE_YEN  A(DE_Y)    // ¥  #define DE_AEQL A(DE_X)    // ≈ @@ -187,21 +142,6 @@  #define DE_INFN A(DE_COMM) // ∞  #define DE_ELLP A(DE_DOT)  // …  #define DE_NDSH A(DE_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │   │ ¬ │ ” │   │ £ │ fi │   │ \ │ ˜ │ · │ ¯ │ ˙ │ ˚ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ » │   │ ‰ │ ¸ │ ˝ │ ˇ │ Á │ Û │   │ ∏ │   │  │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │ Í │ ™ │ Ï │ Ì │ Ó │ ı │   │ fl │   │   │   │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │ ‡ │ Ù │   │ ◊ │ ‹ │ › │ ˘ │ ˛ │ ÷ │ — │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define DE_NOT  S(A(DE_1))    // ¬  #define DE_RDQU S(A(DE_2))    // ”  #define DE_PND  S(A(DE_4))    // £ @@ -212,7 +152,6 @@  #define DE_MACR S(A(DE_0))    // ¯  #define DE_DOTA S(A(DE_SS))   // ˙  #define DE_RNGA S(A(DE_ACUT)) // ˚ -// Row 2  #define DE_RDAQ S(A(DE_Q))    // »  #define DE_PERM S(A(DE_E))    // ‰  #define DE_CEDL S(A(DE_R))    // ¸ @@ -222,7 +161,6 @@  #define DE_UCIR S(A(DE_I))    // Û  #define DE_NARP S(A(DE_P))    // ∏  #define DE_APPL S(A(DE_PLUS)) //  (Apple logo) -// Row 3  #define DE_IACU S(A(DE_S))    // Í  #define DE_TM   S(A(DE_D))    // ™  #define DE_IDIA S(A(DE_F))    // Ï @@ -230,7 +168,6 @@  #define DE_OACU S(A(DE_H))    // Ó  #define DE_DLSI S(A(DE_J))    // ı  #define DE_FL   S(A(DE_L))    // fl -// Row 4  #define DE_GTEQ S(A(DE_LABK)) // ≥  #define DE_DDAG S(A(DE_Y))    // ‡  #define DE_UGRV S(A(DE_X))    // Ù @@ -241,3 +178,4 @@  #define DE_OGON S(A(DE_COMM)) // ˛  #define DE_DIV  S(A(DE_DOT))  // ÷  #define DE_MDSH S(A(DE_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_greek.h b/quantum/keymap_extras/keymap_greek.h index 8c23381204..b4f5b5c5b3 100644 --- a/quantum/keymap_extras/keymap_greek.h +++ b/quantum/keymap_extras/keymap_greek.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ ; │ ς │ Ε │ Ρ │ Τ │ Υ │ Θ │ Ι │ Ο │ Π │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Α │ Σ │ Δ │ Φ │ Γ │ Η │ Ξ │ Κ │ Λ │ ΄ │ ' │ \ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ Ζ │ Χ │ Ψ │ Ω │ Β │ Ν │ Μ │ , │ . │ / │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define GR_GRV  KC_GRV  // `  #define GR_1    KC_1    // 1  #define GR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define GR_0    KC_0    // 0  #define GR_MINS KC_MINS // -  #define GR_EQL  KC_EQL  // = -// Row 2  #define GR_SCLN KC_Q    // ;  #define GR_FSIG KC_W    // ς  #define GR_EPSL KC_E    // Ε @@ -60,7 +53,6 @@  #define GR_PI   KC_P    // Π  #define GR_LBRC KC_LBRC // [  #define GR_RBRC KC_RBRC // ] -// Row 3  #define GR_ALPH KC_A    // Α  #define GR_SIGM KC_S    // Σ  #define GR_DELT KC_D    // Δ @@ -73,7 +65,6 @@  #define GR_TONS KC_SCLN // ΄ (dead)  #define GR_QUOT KC_QUOT // '  #define GR_BSLS KC_NUHS // (backslash) -// Row 4  #define GR_ZETA KC_Z    // Ζ  #define GR_CHI  KC_X    // Χ  #define GR_PSI  KC_C    // Ψ @@ -84,21 +75,6 @@  #define GR_COMM KC_COMM // ,  #define GR_DOT  KC_DOT  // .  #define GR_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ : │ ΅ │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ ¨ │ " │ | │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define GR_TILD S(GR_GRV)  // ~  #define GR_EXLM S(GR_1)    // !  #define GR_AT   S(GR_2)    // @ @@ -112,34 +88,16 @@  #define GR_RPRN S(GR_0)    // )  #define GR_UNDS S(GR_MINS) // _  #define GR_PLUS S(GR_EQL)  // + -// Row 2  #define GR_COLN S(GR_SCLN) // :  #define GR_DIAT S(GR_FSIG) // ΅ (dead)  #define GR_LCBR S(GR_LBRC) // {  #define GR_RCBR S(GR_RBRC) // } -// Row 3  #define GR_DIAE S(GR_TONS) // ¨ (dead)  #define GR_DQUO S(GR_QUOT) // "  #define GR_PIPE S(GR_BSLS) // | -// Row 4  #define GR_LABK S(GR_COMM) // <  #define GR_RABK S(GR_DOT)  // >  #define GR_QUES S(GR_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ ² │ ³ │ £ │ § │ ¶ │   │ ¤ │ ¦ │ ° │ ± │ ½ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │ ® │   │ ¥ │   │   │   │   │ « │ » │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ ¬ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │ © │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define GR_SUP2 ALGR(GR_2)    // ²  #define GR_SUP3 ALGR(GR_3)    // ³  #define GR_PND  ALGR(GR_4)    // £ @@ -150,13 +108,11 @@  #define GR_DEG  ALGR(GR_0)    // °  #define GR_PLMN ALGR(GR_MINS) // ±  #define GR_HALF ALGR(GR_EQL)  // ½ -// Row 2  #define GR_EURO ALGR(GR_EPSL) // €  #define GR_REGD ALGR(GR_RHO)  // ®  #define GR_YEN  ALGR(GR_UPSL) // ¥  #define GR_LDAQ ALGR(GR_LBRC) // «  #define GR_RDAQ ALGR(GR_RBRC) // » -// Row 3  #define GR_NOT  ALGR(GR_BSLS) // ¬ -// Row 4  #define GR_COPY ALGR(GR_PSI)  // © + diff --git a/quantum/keymap_extras/keymap_hebrew.h b/quantum/keymap_extras/keymap_hebrew.h index 87b488f04d..372d7f2e93 100644 --- a/quantum/keymap_extras/keymap_hebrew.h +++ b/quantum/keymap_extras/keymap_hebrew.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ; │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ / │ ' │ פ │ ם │ ן │ ו │ ט │ א │ ר │ ק │ ] │ [ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ ף │ ך │ ל │ ח │ י │ ע │ כ │ ג │ ד │ ש │ , │ \ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ ץ │ ת │ צ │ מ │ נ │ ה │ ב │ ס │ ז │ . │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define IL_SCLN KC_GRV  // ;  #define IL_1    KC_1    // 1  #define IL_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IL_0    KC_0    // 0  #define IL_MINS KC_MINS // -  #define IL_EQL  KC_EQL  // = -// Row 2  #define IL_SLSH KC_Q    // /  #define IL_QUOT KC_W    // '  #define IL_QOF  KC_E    // ק @@ -60,7 +53,6 @@  #define IL_PE   KC_P    // פ  #define IL_RBRC KC_LBRC // ]  #define IL_LBRC KC_RBRC // [ -// Row 3  #define IL_SHIN KC_A    // ש  #define IL_DALT KC_S    // ד  #define IL_GIML KC_D    // ג @@ -73,7 +65,6 @@  #define IL_FPE  KC_SCLN // ף  #define IL_COMM KC_QUOT // ,  #define IL_BSLS KC_NUHS // (backslash) -// Row 4  #define IL_ZAYN KC_Z    // ז  #define IL_SMKH KC_X    // ס  #define IL_BET  KC_C    // ב @@ -84,21 +75,6 @@  #define IL_TAV  KC_COMM // ת  #define IL_FTSD KC_DOT  // ץ  #define IL_DOT  KC_SLSH // . - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ) │ ( │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ } │ { │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │ | │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ > │ < │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IL_TILD S(IL_SCLN) // ~  #define IL_EXLM S(IL_1)    // !  #define IL_AT   S(IL_2)    // @ @@ -112,40 +88,20 @@  #define IL_LPRN S(IL_0)    // (  #define IL_UNDS S(IL_MINS) // _  #define IL_PLUS S(IL_EQL)  // + -// Row 2  #define IL_RCBR S(IL_RBRC) // }  #define IL_LCBR S(IL_LBRC) // { -// Row 3  #define IL_COLN S(IL_FPE)  // :  #define IL_DQUO S(IL_COMM) // "  #define IL_PIPE S(IL_BSLS) // | -// Row 4  #define IL_RABK S(IL_TAV)  // >  #define IL_LABK S(IL_FTSD) // <  #define IL_QUES S(IL_DOT)  // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │ € │ ₪ │ ° │   │   │ × │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │ װ │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │ ײ │ ױ │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │ ÷ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IL_EURO ALGR(IL_3)    // €  #define IL_SHKL ALGR(IL_4)    // ₪  #define IL_DEG  ALGR(IL_5)    // °  #define IL_MUL  ALGR(IL_8)    // × -// Row 2  #define IL_DVAV ALGR(IL_TET)  // װ -// Row 3  #define IL_VYOD ALGR(IL_AYIN) // ױ  #define IL_DYOD ALGR(IL_YOD)  // ײ -// Row 4  #define IL_DIV  ALGR(IL_DOT)  // ÷ + diff --git a/quantum/keymap_extras/keymap_hungarian.h b/quantum/keymap_extras/keymap_hungarian.h index a4e4b1a522..591d71c09c 100644 --- a/quantum/keymap_extras/keymap_hungarian.h +++ b/quantum/keymap_extras/keymap_hungarian.h @@ -1,39 +1,33 @@ -/* Copyright 2018 fuge - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ 0 │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ Ö │ Ü │ Ó │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Ő │ Ú │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ É │ Á │ Ű │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ Í │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define HU_0    KC_GRV  // 0  #define HU_1    KC_1    // 1  #define HU_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define HU_ODIA KC_0    // Ö  #define HU_UDIA KC_MINS // Ü  #define HU_OACU KC_EQL  // Ó -// Row 2  #define HU_Q    KC_Q    // Q  #define HU_W    KC_W    // W  #define HU_E    KC_E    // E @@ -60,7 +53,6 @@  #define HU_P    KC_P    // P  #define HU_ODAC KC_LBRC // Ő  #define HU_UACU KC_RBRC // Ú -// Row 3  #define HU_A    KC_A    // A  #define HU_S    KC_S    // S  #define HU_D    KC_D    // D @@ -73,7 +65,6 @@  #define HU_EACU KC_SCLN // É  #define HU_AACU KC_QUOT // Á  #define HU_UDAC KC_NUHS // Ű -// Row 4  #define HU_IACU KC_NUBS // Í  #define HU_Y    KC_Z    // Y  #define HU_X    KC_X    // X @@ -85,21 +76,6 @@  #define HU_COMM KC_COMM // ,  #define HU_DOT  KC_DOT  // .  #define HU_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ ' │ " │ + │ ! │ % │ / │ = │ ( │ ) │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ ? │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define HU_SECT S(HU_0)    // §  #define HU_QUOT S(HU_1)    // '  #define HU_DQUO S(HU_2)    // " @@ -110,25 +86,9 @@  #define HU_EQL  S(HU_7)    // =  #define HU_LPRN S(HU_8)    // (  #define HU_RPRN S(HU_9)    // ) -// Row 4  #define HU_QUES S(HU_COMM) // ?  #define HU_COLN S(HU_DOT)  // :  #define HU_UNDS S(HU_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ~ │ ˇ │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │ ´ │ ˝ │ ¨ │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ \ │ | │ Ä │   │   │   │ € │   │   │   │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ ä │ đ │ Đ │ [ │ ] │   │   │ ł │ Ł │ $ │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ > │ # │ & │ @ │ { │ } │   │ ; │   │ * │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define HU_TILD ALGR(HU_1)    // ~  #define HU_CARN ALGR(HU_2)    // ˇ (dead)  #define HU_CIRC ALGR(HU_3)    // ^ (dead) @@ -141,14 +101,12 @@  #define HU_DACU ALGR(HU_ODIA) // ˝ (dead)  #define HU_DIAE ALGR(HU_UDIA) // ¨ (dead)  #define HU_CEDL ALGR(HU_OACU) // ¸ (dead) -// Row 2  #define HU_BSLS ALGR(HU_Q)    // (backslash)  #define HU_PIPE ALGR(HU_W)    // |  #define HU_CADI ALGR(HU_E)    // Ä  #define HU_EURO ALGR(HU_U)    // €  #define HU_DIV  ALGR(HU_ODAC) // ÷  #define HU_MUL  ALGR(HU_UACU) // × -// Row 3  #define HU_LADI ALGR(HU_A)    // ä  #define HU_LDST ALGR(HU_S)    // đ  #define HU_CDST ALGR(HU_D)    // Đ @@ -159,7 +117,6 @@  #define HU_DLR  ALGR(HU_EACU) // $  #define HU_SS   ALGR(HU_AACU) // ß  #define HU_CURR ALGR(HU_UDAC) // ¤ -// Row 4  #define HU_LABK ALGR(HU_IACU) // <  #define HU_RABK ALGR(HU_Y)    // >  #define HU_HASH ALGR(HU_X)    // # @@ -169,3 +126,4 @@  #define HU_RCBR ALGR(HU_N)    // }  #define HU_SCLN ALGR(HU_COMM) // ;  #define HU_ASTR ALGR(HU_MINS) // * + diff --git a/quantum/keymap_extras/keymap_icelandic.h b/quantum/keymap_extras/keymap_icelandic.h index 43e4a6e872..800899b515 100644 --- a/quantum/keymap_extras/keymap_icelandic.h +++ b/quantum/keymap_extras/keymap_icelandic.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ Ö │ - │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Ð │ ' │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Æ │ ´ │ + │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ Þ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define IS_RNGA KC_GRV  // ° (dead)  #define IS_1    KC_1    // 1  #define IS_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IS_0    KC_0    // 0  #define IS_ODIA KC_MINS // Ö  #define IS_MINS KC_EQL  // - -// Row 2  #define IS_Q    KC_Q    // Q  #define IS_W    KC_W    // W  #define IS_E    KC_E    // E @@ -60,7 +53,6 @@  #define IS_P    KC_P    // P  #define IS_ETH  KC_LBRC // Ð  #define IS_QUOT KC_RBRC // ' -// Row 3  #define IS_A    KC_A    // A  #define IS_S    KC_S    // S  #define IS_D    KC_D    // D @@ -73,7 +65,6 @@  #define IS_AE   KC_SCLN // Æ  #define IS_ACUT KC_QUOT // ´ (dead)  #define IS_PLUS KC_NUHS // + -// Row 4  #define IS_LABK KC_NUBS // <  #define IS_Z    KC_Z    // Z  #define IS_X    KC_X    // X @@ -85,21 +76,6 @@  #define IS_COMM KC_COMM // ,  #define IS_DOT  KC_DOT  // .  #define IS_THRN KC_SLSH // Þ - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¨ │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │   │ _ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ? │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IS_DIAE S(IS_RNGA) // ¨ (dead)  #define IS_EXLM S(IS_1)    // !  #define IS_DQUO S(IS_2)    // " @@ -112,42 +88,22 @@  #define IS_RPRN S(IS_9)    // )  #define IS_EQL  S(IS_0)    // =  #define IS_UNDS S(IS_MINS) // _ -// Row 2  #define IS_QUES S(IS_QUOT) // ? -// Row 3  #define IS_ASTR S(IS_PLUS) // * -// Row 4  #define IS_RABK S(IS_LABK) // >  #define IS_SCLN S(IS_COMM) // ;  #define IS_COLN S(IS_DOT)  // : - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │   │   │   │   │   │   │ { │ [ │ ] │ } │ \ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ @ │   │ € │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ^ │ ` │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IS_DEG  ALGR(IS_RNGA) // °  #define IS_LCBR ALGR(IS_7)    // {  #define IS_LBRC ALGR(IS_8)    // [  #define IS_RBRC ALGR(IS_9)    // ]  #define IS_RCBR ALGR(IS_0)    // }  #define IS_BSLS ALGR(IS_ODIA) // (backslash) -// Row 2  #define IS_AT   ALGR(IS_Q)    // @  #define IS_EURO ALGR(IS_E)    // €  #define IS_TILD ALGR(IS_QUOT) // ~ -// Row 3  #define IS_CIRC ALGR(IS_ACUT) // ^ (dead)  #define IS_GRV  ALGR(IS_PLUS) // ` (dead) -// Row 4  #define IS_PIPE ALGR(IS_LABK) // |  #define IS_MICR ALGR(IS_M)    // µ + diff --git a/quantum/keymap_extras/keymap_irish.h b/quantum/keymap_extras/keymap_irish.h index 73a4c8028d..2cd63a48e3 100644 --- a/quantum/keymap_extras/keymap_irish.h +++ b/quantum/keymap_extras/keymap_irish.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ # │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define IE_GRV  KC_GRV  // `  #define IE_1    KC_1    // 1  #define IE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IE_0    KC_0    // 0  #define IE_MINS KC_MINS // -  #define IE_EQL  KC_EQL  // = -// Row 2  #define IE_Q    KC_Q    // Q  #define IE_W    KC_W    // W  #define IE_E    KC_E    // E @@ -60,7 +53,6 @@  #define IE_P    KC_P    // P  #define IE_LBRC KC_LBRC // [  #define IE_RBRC KC_RBRC // ] -// Row 3  #define IE_A    KC_A    // A  #define IE_S    KC_S    // S  #define IE_D    KC_D    // D @@ -73,7 +65,6 @@  #define IE_SCLN KC_SCLN // ;  #define IE_QUOT KC_QUOT // '  #define IE_HASH KC_NUHS // # -// Row 4  #define IE_BSLS KC_NUBS // (backslash)  #define IE_Z    KC_Z    // Z  #define IE_X    KC_X    // X @@ -85,21 +76,6 @@  #define IE_COMM KC_COMM // ,  #define IE_DOT  KC_DOT  // .  #define IE_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¬ │ ! │ " │ £ │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ : │ @ │ ~ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IE_NOT  S(IE_GRV)  // ¬  #define IE_EXLM S(IE_1)    // !  #define IE_DQUO S(IE_2)    // " @@ -113,40 +89,21 @@  #define IE_RPRN S(IE_0)    // )  #define IE_UNDS S(IE_MINS) // _  #define IE_PLUS S(IE_EQL)  // + -// Row 2  #define IE_LCBR S(IE_LBRC) // {  #define IE_RCBR S(IE_RBRC) // } -// Row 3  #define IE_COLN S(IE_SCLN) // :  #define IE_AT   S(IE_QUOT) // @  #define IE_TILD S(IE_HASH) // ~ -// Row 4  #define IE_PIPE S(IE_BSLS) // |  #define IE_LABK S(IE_COMM) // <  #define IE_RABK S(IE_DOT)  // >  #define IE_QUES S(IE_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¦ │   │   │   │ € │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ É │   │   │   │ Ú │ Í │ Ó │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Á │   │   │   │   │   │   │   │   │   │ ´ │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IE_BRKP ALGR(IE_GRV)  // ¦  #define IE_EURO ALGR(IE_4)    // € -// Row 2  #define IE_EACU ALGR(IE_E)    // É  #define IE_UACU ALGR(IE_U)    // Ú  #define IE_IACU ALGR(IE_I)    // Í  #define IE_OACU ALGR(IE_O)    // Ó -// Row 3  #define IE_AACU ALGR(IE_A)    // Á  #define IE_ACUT ALGR(IE_QUOT) // ´ (dead) + diff --git a/quantum/keymap_extras/keymap_italian.h b/quantum/keymap_extras/keymap_italian.h index ece60d06b7..95f3348f63 100644 --- a/quantum/keymap_extras/keymap_italian.h +++ b/quantum/keymap_extras/keymap_italian.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Matthias Schmidtt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ \ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ì │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ è │ + │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ò │ à │ ù │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define IT_BSLS KC_GRV  // (backslash)  #define IT_1    KC_1    // 1  #define IT_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IT_0    KC_0    // 0  #define IT_QUOT KC_MINS // '  #define IT_IGRV KC_EQL  // ì -// Row 2  #define IT_Q    KC_Q    // Q  #define IT_W    KC_W    // W  #define IT_E    KC_E    // E @@ -60,7 +53,6 @@  #define IT_P    KC_P    // P  #define IT_EGRV KC_LBRC // è  #define IT_PLUS KC_RBRC // + -// Row 3  #define IT_A    KC_A    // A  #define IT_S    KC_S    // S  #define IT_D    KC_D    // D @@ -73,7 +65,6 @@  #define IT_OGRV KC_SCLN // ò  #define IT_AGRV KC_QUOT // à  #define IT_UGRV KC_NUHS // ù -// Row 4  #define IT_LABK KC_NUBS // <  #define IT_Z    KC_Z    // Z  #define IT_X    KC_X    // X @@ -85,21 +76,6 @@  #define IT_COMM KC_COMM // ,  #define IT_DOT  KC_DOT  // .  #define IT_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ | │ ! │ " │ £ │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ^ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ é │ * │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ ç │ ° │ § │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define IT_PIPE S(IT_BSLS) // |  #define IT_EXLM S(IT_1)    // !  #define IT_DQUO S(IT_2)    // " @@ -113,53 +89,20 @@  #define IT_EQL  S(IT_0)    // =  #define IT_QUES S(IT_QUOT) // ?  #define IT_CIRC S(IT_IGRV) // ^ -// Row 2  #define IT_EACU S(IT_EGRV) // é  #define IT_ASTR S(IT_PLUS) // * -// Row 3  #define IT_CCED S(IT_OGRV) // ç  #define IT_DEG  S(IT_AGRV) // °  #define IT_SECT S(IT_UGRV) // § -// Row 4  #define IT_RABK S(IT_LABK) // >  #define IT_COLN S(IT_DOT)  // :  #define IT_SCLN S(IT_COMM) // ;  #define IT_UNDS S(IT_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ @ │ # │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 2  #define IT_EURO ALGR(IT_E)    // €  #define IT_LBRC ALGR(IT_EGRV) // [  #define IT_RBRC ALGR(IT_PLUS) // ] -// Row 3  #define IT_AT   ALGR(IT_OGRV) // @  #define IT_HASH ALGR(IT_AGRV) // # - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 2  #define IT_LCBR S(ALGR(IT_EGRV)) // {  #define IT_RCBR S(ALGR(IT_PLUS)) // } + diff --git a/quantum/keymap_extras/keymap_italian_mac_ansi.h b/quantum/keymap_extras/keymap_italian_mac_ansi.h index c2b8e3cad6..5e7e2a37e8 100644 --- a/quantum/keymap_extras/keymap_italian_mac_ansi.h +++ b/quantum/keymap_extras/keymap_italian_mac_ansi.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Matthias Schmidtt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ < │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ì │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ è │ + │ ù │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ò │ à │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define IT_LABK KC_GRV  // <  #define IT_1    KC_1    // 1  #define IT_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IT_0    KC_0    // 0  #define IT_QUOT KC_MINS // '  #define IT_IGRV KC_EQL  // ì -// Row 2  #define IT_Q    KC_Q    // Q  #define IT_W    KC_W    // W  #define IT_E    KC_E    // E @@ -61,7 +54,6 @@  #define IT_EGRV KC_LBRC // è  #define IT_PLUS KC_RBRC // +  #define IT_UGRV KC_BSLS // ù -// Row 3  #define IT_A    KC_A    // A  #define IT_S    KC_S    // S  #define IT_D    KC_D    // D @@ -73,7 +65,6 @@  #define IT_L    KC_L    // L  #define IT_OGRV KC_SCLN // ò  #define IT_AGRV KC_QUOT // à -// Row 4  #define IT_BSLS KC_NUBS // (backslash, not physically present)  #define IT_Z    KC_Z    // Z  #define IT_X    KC_X    // X @@ -85,21 +76,6 @@  #define IT_COMM KC_COMM // ,  #define IT_DOT  KC_DOT  // .  #define IT_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ > │ ! │ " │ £ │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ^ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │ é │ * │ § │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │   │   │   │   │   │   │   │   │   │ ç │ ° │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_RABK S(IT_LABK) // >  #define IT_EXLM S(IT_1)    // !  #define IT_DQUO S(IT_2)    // " @@ -113,33 +89,15 @@  #define IT_EQL  S(IT_0)    // =  #define IT_QUES S(IT_QUOT) // ?  #define IT_CIRC S(IT_IGRV) // ^ -// Row 2  #define IT_EACU S(IT_EGRV) // é  #define IT_ASTR S(IT_PLUS) // *  #define IT_SECT S(IT_UGRV) // § -// Row 3  #define IT_LCCE S(IT_OGRV) // ç  #define IT_DEG  S(IT_AGRV) // ° -// Row 4  #define IT_PIPE S(IT_BSLS) // | (not physically present)  #define IT_SCLN S(IT_COMM) // ;  #define IT_COLN S(IT_DOT)  // :  #define IT_UNDS S(IT_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≤ │ « │ “ │ ‘ │ ¥ │ ~ │ ‹ │ ÷ │ ´ │ ` │ ≠ │ ¡ │ ˆ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ „ │ Ω │ € │ ® │ ™ │ Æ │ ¨ │ Œ │ Ø │ π │ [ │ ] │ ¶ │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ Å │ ß │ ∂ │ ƒ │ ∞ │ ∆ │ ª │ º │ ¬ │ @ │ # │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ ∑ │ † │ © │ √ │ ∫ │ ˜ │ µ │ … │ • │ – │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_LTEQ A(IT_LABK) // ≤  #define IT_LDAQ A(IT_1)    // «  #define IT_LDQU A(IT_2)    // “ @@ -153,7 +111,6 @@  #define IT_NEQL A(IT_0)    // ≠  #define IT_IEXL A(IT_QUOT) // ¡  #define IT_DCIR A(IT_IGRV) // ˆ (dead) -// Row 2  #define IT_DLQU A(IT_Q)    // „  #define IT_OMEG A(IT_W)    // Ω  #define IT_EURO A(IT_E)    // € @@ -166,7 +123,6 @@  #define IT_PI   A(IT_P)    // π  #define IT_LBRC A(IT_EGRV) // [  #define IT_RBRC A(IT_PLUS) // ] -// Row 3  #define IT_ARNG A(IT_A)    // Å  #define IT_SS   A(IT_S)    // ß  #define IT_PDIF A(IT_D)    // ∂ @@ -179,7 +135,6 @@  #define IT_AT   A(IT_OGRV) // @  #define IT_HASH A(IT_AGRV) // #  #define IT_PILC A(IT_UGRV) // ¶ -// Row 4  #define IT_GRV  A(IT_BSLS) // ` (not physically present)  #define IT_NARS A(IT_Z)    // ∑  #define IT_DAGG A(IT_X)    // † @@ -191,21 +146,6 @@  #define IT_ELLP A(IT_COMM) // …  #define IT_BULT A(IT_DOT)  // •  #define IT_NDSH A(IT_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≥ │ » │ ” │ ’ │ ¢ │ ‰ │ › │ ⁄ │  │   │ ≈ │ ¿ │ ± │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ ‚ │ À │ È │ Ì │ Ò │   │ Ù │   │   │ ∏ │ { │ } │ ◊ │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │   │ ¯ │ ˘ │ ˙ │ ˚ │ ¸ │ ˝ │ ˛ │ ˇ │ Ç │ ∞ │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │   │ ‡ │ Á │ É │ Í │ Ó │ Ú │   │ · │ — │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_GTEQ S(A(IT_LABK)) // ≥  #define IT_RDAQ S(A(IT_1))    // »  #define IT_RDQU S(A(IT_2))    // ” @@ -218,7 +158,6 @@  #define IT_AEQL S(A(IT_0))    // ≈  #define IT_IQUE S(A(IT_QUOT)) // ¿  #define IT_PLMN S(A(IT_IGRV)) // ± -// Row 2  #define IT_SLQU S(A(IT_Q))    // ‚  #define IT_CAGR S(A(IT_W))    // À  #define IT_CEGR S(A(IT_E))    // È @@ -229,7 +168,6 @@  #define IT_LCBR S(A(IT_EGRV)) // {  #define IT_RCBR S(A(IT_PLUS)) // }  #define IT_LOZN S(A(IT_UGRV)) // ◊ -// Row 3  #define IT_MACR S(A(IT_S))    // ¯  #define IT_BREV S(A(IT_D))    // ˘  #define IT_DOTA S(A(IT_F))    // ˙ @@ -239,7 +177,6 @@  #define IT_OGON S(A(IT_K))    // ˛  #define IT_CARN S(A(IT_L))    // ˇ  #define IT_CCCE S(A(IT_OGRV)) // Ç -// Row 4  #define IT_DDAG S(A(IT_X))    // ‡  #define IT_CAAC S(A(IT_C))    // Á  #define IT_CEAC S(A(IT_V))    // É @@ -248,3 +185,4 @@  #define IT_CUAC S(A(IT_M))    // Ú  #define IT_MDDT S(A(IT_DOT))  // ·  #define IT_MDSH S(A(IT_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_italian_mac_iso.h b/quantum/keymap_extras/keymap_italian_mac_iso.h index 61f76ddba7..1d30451376 100644 --- a/quantum/keymap_extras/keymap_italian_mac_iso.h +++ b/quantum/keymap_extras/keymap_italian_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Matthias Schmidtt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ \ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ì │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ è │ + │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ò │ à │ ù │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define IT_BSLS KC_GRV  // (backslash)  #define IT_1    KC_1    // 1  #define IT_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define IT_0    KC_0    // 0  #define IT_QUOT KC_MINS // '  #define IT_IGRV KC_EQL  // ì -// Row 2  #define IT_Q    KC_Q    // Q  #define IT_W    KC_W    // W  #define IT_E    KC_E    // E @@ -60,7 +53,6 @@  #define IT_P    KC_P    // P  #define IT_EGRV KC_LBRC // è  #define IT_PLUS KC_RBRC // + -// Row 3  #define IT_A    KC_A    // A  #define IT_S    KC_S    // S  #define IT_D    KC_D    // D @@ -73,7 +65,6 @@  #define IT_OGRV KC_SCLN // ò  #define IT_AGRV KC_QUOT // à  #define IT_UGRV KC_NUHS // ù -// Row 4  #define IT_LABK KC_NUBS // <  #define IT_Z    KC_Z    // Z  #define IT_X    KC_X    // X @@ -85,21 +76,6 @@  #define IT_COMM KC_COMM // ,  #define IT_DOT  KC_DOT  // .  #define IT_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ | │ ! │ " │ £ │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ^ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │ é │ * │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │ ç │ ° │ § │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_PIPE S(IT_BSLS) // |  #define IT_EXLM S(IT_1)    // !  #define IT_DQUO S(IT_2)    // " @@ -113,33 +89,15 @@  #define IT_EQL  S(IT_0)    // =  #define IT_QUES S(IT_QUOT) // ?  #define IT_CIRC S(IT_IGRV) // ^ -// Row 2  #define IT_EACU S(IT_EGRV) // é  #define IT_ASTR S(IT_PLUS) // * -// Row 3  #define IT_LCCE S(IT_OGRV) // ç  #define IT_DEG  S(IT_AGRV) // °  #define IT_SECT S(IT_UGRV) // § -// Row 4  #define IT_RABK S(IT_LABK) // >  #define IT_SCLN S(IT_COMM) // ;  #define IT_COLN S(IT_DOT)  // :  #define IT_UNDS S(IT_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ` │ « │ “ │ ‘ │ ¥ │ ~ │ ‹ │ ÷ │ ´ │ ` │ ≠ │ ¡ │ ˆ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ „ │ Ω │ € │ ® │ ™ │ Æ │ ¨ │ Œ │ Ø │ π │ [ │ ] │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ Å │ ß │ ∂ │ ƒ │ ∞ │ ∆ │ ª │ º │ ¬ │ @ │ # │ ¶ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ ∑ │ † │ © │ √ │ ∫ │ ˜ │ µ │ … │ • │ – │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_GRV  A(IT_BSLS) // `  #define IT_LDAQ A(IT_1)    // «  #define IT_LDQU A(IT_2)    // “ @@ -153,7 +111,6 @@  #define IT_NEQL A(IT_0)    // ≠  #define IT_IEXL A(IT_QUOT) // ¡  #define IT_DCIR A(IT_IGRV) // ˆ (dead) -// Row 2  #define IT_DLQU A(IT_Q)    // „  #define IT_OMEG A(IT_W)    // Ω  #define IT_EURO A(IT_E)    // € @@ -166,7 +123,6 @@  #define IT_PI   A(IT_P)    // π  #define IT_LBRC A(IT_EGRV) // [  #define IT_RBRC A(IT_PLUS) // ] -// Row 3  #define IT_ARNG A(IT_A)    // Å  #define IT_SS   A(IT_S)    // ß  #define IT_PDIF A(IT_D)    // ∂ @@ -179,7 +135,6 @@  #define IT_AT   A(IT_OGRV) // @  #define IT_HASH A(IT_AGRV) // #  #define IT_PILC A(IT_UGRV) // ¶ -// Row 4  #define IT_LTEQ A(IT_LABK) // ≤  #define IT_NARS A(IT_Z)    // ∑  #define IT_DAGG A(IT_X)    // † @@ -191,21 +146,6 @@  #define IT_ELLP A(IT_COMM) // …  #define IT_BULT A(IT_DOT)  // •  #define IT_NDSH A(IT_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ı │ » │ ” │ ’ │ ¢ │ ‰ │ › │ ⁄ │  │   │ ≈ │ ¿ │ ± │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ ‚ │ À │ È │ Ì │ Ò │   │ Ù │   │   │ ∏ │ { │ } │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │ ¯ │ ˘ │ ˙ │ ˚ │ ¸ │ ˝ │ ˛ │ ˇ │ Ç │   │ ◊ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │   │ ‡ │ Á │ É │ Í │ Ó │ Ú │   │ · │ — │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define IT_DLSI S(A(IT_BSLS)) // ı  #define IT_RDAQ S(A(IT_1))    // »  #define IT_RDQU S(A(IT_2))    // ” @@ -218,7 +158,6 @@  #define IT_AEQL S(A(IT_0))    // ≈  #define IT_IQUE S(A(IT_QUOT)) // ¿  #define IT_PLMN S(A(IT_IGRV)) // ± -// Row 2  #define IT_SLQU S(A(IT_Q))    // ‚  #define IT_CAGR S(A(IT_W))    // À  #define IT_CEGR S(A(IT_E))    // È @@ -228,7 +167,6 @@  #define IT_NARP S(A(IT_P))    // ∏  #define IT_LCBR S(A(IT_EGRV)) // {  #define IT_RCBR S(A(IT_PLUS)) // } -// Row 3  #define IT_MACR S(A(IT_S))    // ¯  #define IT_BREV S(A(IT_D))    // ˘  #define IT_DOTA S(A(IT_F))    // ˙ @@ -239,7 +177,6 @@  #define IT_CARN S(A(IT_L))    // ˇ  #define IT_CCCE S(A(IT_OGRV)) // Ç  #define IT_LOZN S(A(IT_UGRV)) // ◊ -// Row 4  #define IT_GTEQ S(A(IT_LABK)) // ≥  #define IT_DDAG S(A(IT_X))    // ‡  #define IT_CAAC S(A(IT_C))    // Á @@ -249,3 +186,4 @@  #define IT_CUAC S(A(IT_M))    // Ú  #define IT_MDDT S(A(IT_DOT))  // ·  #define IT_MDSH S(A(IT_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_japanese.h b/quantum/keymap_extras/keymap_japanese.h index df78af8399..286863deea 100644 --- a/quantum/keymap_extras/keymap_japanese.h +++ b/quantum/keymap_extras/keymap_japanese.h @@ -1,45 +1,33 @@ -/* Copyright 2016 h-youhei - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - * - * JP106-layout (Japanese Standard) - * - * For more information, see - * http://www2d.biglobe.ne.jp/~msyk/keyboard/layout/usbkeycode.html - * note: This website is written in Japanese. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ - * │Z↔H│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ ^ │ ¥ │   │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ @ │ [ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │ Eisū │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ : │ ] │    │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ \ │      │ - * ├─────┬──┴┬──┴──┬┴───┴┬──┴───┴──┬┴───┴┬──┴┬──┴┬──┴┬──┴┬─────┤ - * │     │   │     │Muhen│         │ Hen │K↔H│   │   │   │     │ - * └─────┴───┴─────┴─────┴─────────┴─────┴───┴───┴───┴───┴─────┘ - */ -// Row 1 +// Aliases  #define JP_ZKHK KC_GRV  // Zenkaku ↔ Hankaku ↔ Kanji (半角 ↔ 全角 ↔ 漢字)  #define JP_1    KC_1    // 1  #define JP_2    KC_2    // 2 @@ -54,7 +42,6 @@  #define JP_MINS KC_MINS // -  #define JP_CIRC KC_EQL  // ^  #define JP_YEN  KC_INT3 // ¥ -// Row 2  #define JP_Q    KC_Q    // Q  #define JP_W    KC_W    // W  #define JP_E    KC_E    // E @@ -67,7 +54,6 @@  #define JP_P    KC_P    // P  #define JP_AT   KC_LBRC // @  #define JP_LBRC KC_RBRC // [ -// Row 3  #define JP_EISU KC_CAPS // Eisū (英数)  #define JP_A    KC_A    // A  #define JP_S    KC_S    // S @@ -81,7 +67,6 @@  #define JP_SCLN KC_SCLN // ;  #define JP_COLN KC_QUOT // :  #define JP_RBRC KC_NUHS // ] -// Row 4  #define JP_Z    KC_Z    // Z  #define JP_X    KC_X    // X  #define JP_C    KC_C    // C @@ -93,25 +78,9 @@  #define JP_DOT  KC_DOT  // .  #define JP_SLSH KC_SLSH // /  #define JP_BSLS KC_INT1 // (backslash) -// Row 5  #define JP_MHEN KC_INT5 // Muhenkan (無変換)  #define JP_HENK KC_INT4 // Henkan (変換)  #define JP_KANA KC_INT2 // Katakana ↔ Hiragana ↔ Rōmaji (カタカナ ↔ ひらがな ↔ ローマ字) - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ - * │   │ ! │ " │ # │ $ │ % │ & │ ' │ ( │ ) │   │ = │ ~ │ | │   │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ` │ { │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │ Caps │   │   │   │   │   │   │   │   │   │ + │ * │ } │    │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │ _ │      │ - * ├─────┬──┴┬──┴──┬┴───┴┬──┴───┴──┬┴───┴┬──┴┬──┴┬──┴┬──┴┬─────┤ - * │     │   │     │     │         │     │   │   │   │   │     │ - * └─────┴───┴─────┴─────┴─────────┴─────┴───┴───┴───┴───┴─────┘ - */ -// Row 1  #define JP_EXLM S(JP_1)    // !  #define JP_DQUO S(JP_2)    // "  #define JP_HASH S(JP_3)    // # @@ -124,16 +93,14 @@  #define JP_EQL  S(JP_MINS) // =  #define JP_TILD S(JP_CIRC) // ~  #define JP_PIPE S(JP_YEN)  // | -// Row 2  #define JP_GRV  S(JP_AT)   // `  #define JP_LCBR S(JP_LBRC) // { -// Row 3  #define JP_CAPS S(JP_EISU) // Caps Lock  #define JP_PLUS S(JP_SCLN) // +  #define JP_ASTR S(JP_COLN) // *  #define JP_RCBR S(JP_RBRC) // } -// Row 4  #define JP_LABK S(JP_COMM) // <  #define JP_RABK S(JP_DOT)  // >  #define JP_QUES S(JP_SLSH) // ?  #define JP_UNDS S(JP_BSLS) // _ + diff --git a/quantum/keymap_extras/keymap_korean.h b/quantum/keymap_extras/keymap_korean.h index 3d41a98b88..073647de7f 100644 --- a/quantum/keymap_extras/keymap_korean.h +++ b/quantum/keymap_extras/keymap_korean.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  ₩  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├─────┬──┴┬──┴──┬┴──┬┴───┴───┴───┴──┬┴──┬┴───┴┬──┴┬───┬─────┤ - * │     │   │     │Hnj│               │H↔Y│     │   │   │     │ - * └─────┴───┴─────┴───┴───────────────┴───┴─────┴───┴───┴─────┘ - */ -// Row 1 +// Aliases  #define KR_GRV  KC_GRV  // `  #define KR_1    KC_1    // 1  #define KR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define KR_0    KC_0    // 0  #define KR_MINS KC_MINS // -  #define KR_EQL  KC_EQL  // = -// Row 2  #define KR_Q    KC_Q    // Q  #define KR_W    KC_W    // W  #define KR_E    KC_E    // E @@ -61,7 +54,6 @@  #define KR_LBRC KC_LBRC // [  #define KR_RBRC KC_RBRC // ]  #define KR_WON  KC_BSLS // ₩ -// Row 3  #define KR_A    KC_A    // A  #define KR_S    KC_S    // S  #define KR_D    KC_D    // D @@ -73,7 +65,6 @@  #define KR_L    KC_L    // L  #define KR_SCLN KC_SCLN // ;  #define KR_QUOT KC_QUOT // ' -// Row 4  #define KR_Z    KC_Z    // Z  #define KR_X    KC_X    // X  #define KR_C    KC_C    // C @@ -84,24 +75,8 @@  #define KR_COMM KC_COMM // ,  #define KR_DOT  KC_DOT  // .  #define KR_SLSH KC_SLSH // / -// Row 5  #define KR_HANJ KC_LNG2 // Hanja (한자)  #define KR_HAEN KC_LNG1 // Han ↔ Yeong (한 ↔ 영) - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├─────┬──┴┬──┴──┬┴──┬┴───┴───┴───┴──┬┴──┬┴───┴┬──┴┬───┬─────┤ - * │     │   │     │   │               │   │     │   │   │     │ - * └─────┴───┴─────┴───┴───────────────┴───┴─────┴───┴───┴─────┘ - */ -// Row 1  #define KR_TILD S(KR_GRV)  // ~  #define KR_EXLM S(KR_1)    // !  #define KR_AT   S(KR_2)    // @ @@ -115,14 +90,12 @@  #define KR_RPRN S(KR_0)    // )  #define KR_UNDS S(KR_MINS) // _  #define KR_PLUS S(KR_EQL)  // + -// Row 2  #define KR_LCBR S(KR_LBRC) // {  #define KR_RCBR S(KR_RBRC) // }  #define KR_PIPE S(KR_WON)  // | -// Row 3  #define KR_COLN S(KR_SCLN) // :  #define KR_DQUO S(KR_QUOT) // " -// Row 4  #define KR_LABK S(KR_COMM) // <  #define KR_RABK S(KR_DOT)  // >  #define KR_QUES S(KR_SLSH) // ? + diff --git a/quantum/keymap_extras/keymap_latvian.h b/quantum/keymap_extras/keymap_latvian.h index 087138cb72..e3ac1cd433 100644 --- a/quantum/keymap_extras/keymap_latvian.h +++ b/quantum/keymap_extras/keymap_latvian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ \ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define LV_GRV  KC_GRV  // `  #define LV_1    KC_1    // 1  #define LV_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define LV_0    KC_0    // 0  #define LV_MINS KC_MINS // -  #define LV_EQL  KC_EQL  // = -// Row 2  #define LV_Q    KC_Q    // Q  #define LV_W    KC_W    // W  #define LV_E    KC_E    // E @@ -60,7 +53,6 @@  #define LV_P    KC_P    // P  #define LV_LBRC KC_LBRC // [  #define LV_RBRC KC_RBRC // ] -// Row 3  #define LV_A    KC_A    // A  #define LV_S    KC_S    // S  #define LV_D    KC_D    // D @@ -73,7 +65,6 @@  #define LV_SCLN KC_SCLN // ;  #define LV_QUOT KC_QUOT // ' (dead)  #define LV_BSLS KC_NUHS // (backslash) -// Row 4  #define LV_NUBS KC_NUBS // (backslash)  #define LV_Z    KC_Z    // Z  #define LV_X    KC_X    // X @@ -85,21 +76,6 @@  #define LV_COMM KC_COMM // ,  #define LV_DOT  KC_DOT  // .  #define LV_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │ | │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LV_TILD S(LV_GRV)  // ~  #define LV_EXLM S(LV_1)    // !  #define LV_AT   S(LV_2)    // @ @@ -113,75 +89,39 @@  #define LV_RPRN S(LV_0)    // )  #define LV_UNDS S(LV_MINS) // _  #define LV_PLUS S(LV_EQL)  // + -// Row 2  #define LV_LCBR S(LV_LBRC) // {  #define LV_RCBR S(LV_RBRC) // } -// Row 3  #define LV_COLN S(LV_SCLN) // :  #define LV_DQUO S(LV_QUOT) // " (dead)  #define LV_PIPE S(LV_BSLS) // | -// Row 4  #define LV_LABK S(LV_COMM) // <  #define LV_RABK S(LV_DOT)  // >  #define LV_QUES S(LV_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ - │   │ « │ » │ € │   │ ’ │   │   │   │   │ – │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ Ē │ Ŗ │   │   │ Ū │ Ī │ Ō │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Ā │ Š │   │   │ Ģ │   │   │ Ķ │ Ļ │   │ ´ │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ Ž │   │ Č │   │   │ Ņ │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LV_SHYP ALGR(LV_GRV)  //  (soft hyphen) -#define LV_NBSP ALGR(LV_1)    //   (non-breaking space) +#define LV_NBSP ALGR(LV_1)    // (non-breaking space)  #define LV_LDAQ ALGR(LV_2)    // «  #define LV_RDAQ ALGR(LV_3)    // »  #define LV_EURO ALGR(LV_4)    // €  #define LV_RSQU ALGR(LV_6)    // ’  #define LV_NDSH ALGR(LV_MINS) // – -// Row 2  #define LV_EMAC ALGR(LV_E)    // Ē  #define LV_RCED ALGR(LV_R)    // Ŗ  #define LV_UMAC ALGR(LV_U)    // Ū  #define LV_IMAC ALGR(LV_I)    // Ī  #define LV_OMAC ALGR(LV_O)    // Ō -// Row 3  #define LV_AMAC ALGR(LV_A)    // Ā  #define LV_SCAR ALGR(LV_S)    // Š  #define LV_GCED ALGR(LV_G)    // Ģ  #define LV_KCED ALGR(LV_K)    // Ķ  #define LV_LCED ALGR(LV_L)    // Ļ  #define LV_ACUT ALGR(LV_QUOT) // ´ (dead) -// Row 4  #define LV_ZCAR ALGR(LV_Z)    // Ž  #define LV_CCAR ALGR(LV_C)    // Č  #define LV_NCED ALGR(LV_N)    // Ņ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │ § │ ° │   │ ± │ × │   │   │ — │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ¨ │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LV_SECT S(ALGR(LV_4))    // §  #define LV_DEG  S(ALGR(LV_5))    // °  #define LV_PLMN S(ALGR(LV_7))    // ±  #define LV_MUL  S(ALGR(LV_8))    // ×  #define LV_MDSH S(ALGR(LV_MINS)) // — -// Row 3  #define LV_DIAE S(ALGR(LV_QUOT)) // ¨ (dead) + diff --git a/quantum/keymap_extras/keymap_lithuanian_azerty.h b/quantum/keymap_extras/keymap_lithuanian_azerty.h index 6f47b16702..11de3ad030 100644 --- a/quantum/keymap_extras/keymap_lithuanian_azerty.h +++ b/quantum/keymap_extras/keymap_lithuanian_azerty.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ ! │ - │ / │ ; │ : │ , │ . │ = │ ( │ ) │ ? │ X │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Ą │ Ž │ E │ R │ T │ Y │ U │ I │ O │ P │ Į │ W │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ Š │ G │ H │ J │ K │ L │ Ų │ Ė │ Q │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ Ū │ C │ V │ B │ N │ M │ Č │ F │ Ę │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define LT_GRV  KC_GRV  // `  #define LT_EXLM KC_1    // !  #define LT_MINS KC_2    // - @@ -47,7 +41,6 @@  #define LT_RPRN KC_0    // )  #define LT_QUES KC_MINS // ?  #define LT_X    KC_EQL  // X -// Row 2  #define LT_AOGO KC_Q    // Ą  #define LT_ZCAR KC_W    // Ž  #define LT_E    KC_E    // E @@ -60,7 +53,6 @@  #define LT_P    KC_P    // P  #define LT_IOGO KC_LBRC // Į  #define LT_W    KC_RBRC // W -// Row 3  #define LT_A    KC_A    // A  #define LT_S    KC_S    // S  #define LT_D    KC_D    // D @@ -73,7 +65,6 @@  #define LT_UOGO KC_SCLN // Ų  #define LT_EDOT KC_QUOT // Ė  #define LT_Q    KC_NUHS // Q -// Row 4  #define LT_LABK KC_NUBS // <  #define LT_Z    KC_Z    // Z  #define LT_UMAC KC_X    // Ū @@ -85,21 +76,6 @@  #define LT_CCAR KC_COMM // Č  #define LT_F    KC_DOT  // F  #define LT_EOGO KC_SLSH // Ę - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LT_TILD S(LT_GRV)  // ~  #define LT_1    S(LT_EXLM) // 1  #define LT_2    S(LT_MINS) // 2 @@ -112,23 +88,7 @@  #define LT_9    S(LT_LPRN) // 9  #define LT_0    S(LT_RPRN) // 0  #define LT_PLUS S(LT_QUES) // + -// Row 4  #define LT_RABK S(LT_LABK) // > - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ´ │ @ │ _ │ # │ $ │ § │ ^ │ & │ * │ [ │ ] │ ' │ % │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ " │ | │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ – │   │   │   │   │   │   │   │ „ │ “ │ \ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LT_ACUT ALGR(LT_GRV)  // ´  #define LT_AT   ALGR(LT_EXLM) // @  #define LT_UNDS ALGR(LT_MINS) // _ @@ -142,15 +102,13 @@  #define LT_RBRC ALGR(LT_RPRN) // ]  #define LT_QUOT ALGR(LT_QUES) // '  #define LT_PERC ALGR(LT_X)    // % -// Row 2  #define LT_EURO ALGR(LT_E)    // €  #define LT_LCBR ALGR(LT_IOGO) // {  #define LT_RCBR ALGR(LT_W)    // } -// Row 3  #define LT_DQUO ALGR(LT_EDOT) // "  #define LT_PIPE ALGR(LT_Q)    // | -// Row 4  #define LT_NDSH ALGR(LT_LABK) // –  #define LT_DLQU ALGR(LT_CCAR) // „  #define LT_LDQU ALGR(LT_F)    // “  #define LT_BSLS ALGR(LT_EOGO) // (backslash) + diff --git a/quantum/keymap_extras/keymap_lithuanian_qwerty.h b/quantum/keymap_extras/keymap_lithuanian_qwerty.h index afca2dc750..c27389971e 100644 --- a/quantum/keymap_extras/keymap_lithuanian_qwerty.h +++ b/quantum/keymap_extras/keymap_lithuanian_qwerty.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ Ą │ Č │ Ę │ Ė │ Į │ Š │ Ų │ Ū │ 9 │ 0 │ - │ Ž │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define LT_GRV  KC_GRV  // `  #define LT_AOGO KC_1    // Ą  #define LT_CCAR KC_2    // Č @@ -47,7 +41,6 @@  #define LT_0    KC_0    // 0  #define LT_MINS KC_MINS // -  #define LT_ZCAR KC_EQL  // Ž -// Row 2  #define LT_Q    KC_Q    // Q  #define LT_W    KC_W    // W  #define LT_E    KC_E    // E @@ -60,7 +53,6 @@  #define LT_P    KC_P    // P  #define LT_LBRC KC_LBRC // [  #define LT_RBRC KC_RBRC // ] -// Row 3  #define LT_A    KC_A    // A  #define LT_S    KC_S    // S  #define LT_D    KC_D    // D @@ -73,7 +65,6 @@  #define LT_SCLN KC_SCLN // ;  #define LT_QUOT KC_QUOT // '  #define LT_BSLS KC_BSLS // (backslash) -// Row 4  #define LT_Z    KC_Z    // Z  #define LT_X    KC_X    // X  #define LT_C    KC_C    // C @@ -84,51 +75,18 @@  #define LT_COMM KC_COMM // ,  #define LT_DOT  KC_DOT  // .  #define LT_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │   │   │   │   │   │   │   │   │ ( │ ) │ _ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LT_TILD S(LT_GRV)  // ~  #define LT_LPRN S(LT_9)    // (  #define LT_RPRN S(LT_0)    // )  #define LT_UNDS S(LT_MINS) // _ -// Row 2  #define LT_LCBR S(LT_LBRC) // {  #define LT_RCBR S(LT_RBRC) // } -// Row 3  #define LT_COLN S(LT_SCLN) // :  #define LT_DQUO S(LT_QUOT) // "  #define LT_PIPE S(LT_BSLS) // | -// Row 4  #define LT_LABK S(LT_COMM) // <  #define LT_RABK S(LT_DOT)  // >  #define LT_QUES S(LT_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │   │   │   │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LT_1    ALGR(LT_AOGO) // 1  #define LT_2    ALGR(LT_CCAR) // 2  #define LT_3    ALGR(LT_EOGO) // 3 @@ -138,23 +96,7 @@  #define LT_7    ALGR(LT_UOGO) // 7  #define LT_8    ALGR(LT_UMAC) // 8  #define LT_EQL  ALGR(LT_ZCAR) // = -// Row 2  #define LT_EURO ALGR(LT_E)    // € - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │   │   │   │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define LT_EXLM S(ALGR(LT_AOGO)) // !  #define LT_AT   S(ALGR(LT_CCAR)) // @  #define LT_HASH S(ALGR(LT_EOGO)) // # @@ -164,3 +106,4 @@  #define LT_AMPR S(ALGR(LT_UOGO)) // &  #define LT_ASTR S(ALGR(LT_UMAC)) // *  #define LT_PLUS S(ALGR(LT_ZCAR)) // + + diff --git a/quantum/keymap_extras/keymap_neo2.h b/quantum/keymap_extras/keymap_neo2.h index f9fc00d794..e8352ffa08 100644 --- a/quantum/keymap_extras/keymap_neo2.h +++ b/quantum/keymap_extras/keymap_neo2.h @@ -1,39 +1,33 @@ -/* Copyright 2016 Matthias Schmitt - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ^ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ X │ V │ L │ C │ W │ K │ H │ G │ F │ Q │ ß │ ´ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │  L3  │ U │ I │ A │ E │ O │ S │ N │ R │ T │ D │ Y │ L3│    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │L4 │ Ü │ Ö │ Ä │ P │ Z │ B │ M │ , │ . │ J │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │ L4 │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define NE_CIRC KC_GRV  // ^ (dead)  #define NE_1    KC_1    // 1  #define NE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define NE_0    KC_0    // 0  #define NE_MINS KC_MINS // -  #define NE_GRV  KC_EQL  // ` (dead) -// Row 2  #define NE_X    KC_Q    // X  #define NE_V    KC_W    // V  #define NE_L    KC_E    // L @@ -60,7 +53,6 @@  #define NE_Q    KC_P    // Q  #define NE_SS   KC_LBRC // ß  #define NE_ACUT KC_RBRC // ´ (dead) -// Row 3  #define NE_L3L  KC_CAPS // (layer 3)  #define NE_U    KC_A    // U  #define NE_I    KC_S    // I @@ -74,7 +66,6 @@  #define NE_D    KC_SCLN // D  #define NE_Y    KC_QUOT // Y  #define NE_L3R  KC_NUHS // (layer 3) -// Row 4  #define NE_L4L  KC_NUBS // (layer 4)  #define NE_UDIA KC_Z    // Ü  #define NE_ODIA KC_X    // Ö @@ -86,5 +77,5 @@  #define NE_COMM KC_COMM // ,  #define NE_DOT  KC_DOT  // .  #define NE_J    KC_SLSH // J -// Row 5  #define NE_L4R  KC_ALGR // (layer 4) + diff --git a/quantum/keymap_extras/keymap_nordic.h b/quantum/keymap_extras/keymap_nordic.h index 55a58a25b0..e336916713 100644 --- a/quantum/keymap_extras/keymap_nordic.h +++ b/quantum/keymap_extras/keymap_nordic.h @@ -1,38 +1,43 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" +// clang-format off -// Normal characters -#define NO_HALF KC_GRV +// Aliases +#define NO_HALF KC_GRV   #define NO_PLUS KC_MINS -#define NO_ACUT KC_EQL - -#define NO_AM KC_LBRC +#define NO_ACUT KC_EQL  +#define NO_AM   KC_LBRC  #define NO_QUOT KC_RBRC // this is the "umlaut" char on Nordic keyboards, Apple layout -#define NO_AE KC_SCLN +#define NO_AE   KC_SCLN  #define NO_OSLH KC_QUOT  #define NO_APOS KC_NUHS -  #define NO_LESS KC_NUBS  #define NO_MINS KC_SLSH - -// Shifted characters  #define NO_SECT LSFT(NO_HALF)  #define NO_QUO2 LSFT(KC_2)  #define NO_BULT LSFT(KC_4) @@ -40,29 +45,24 @@  #define NO_SLSH LSFT(KC_7)  #define NO_LPRN LSFT(KC_8)  #define NO_RPRN LSFT(KC_9) -#define NO_EQL LSFT(KC_0) +#define NO_EQL  LSFT(KC_0)  #define NO_QUES LSFT(NO_PLUS) -#define NO_GRV LSFT(NO_ACUT) - +#define NO_GRV  LSFT(NO_ACUT)  #define NO_CIRC LSFT(NO_QUOT) -  #define NO_GRTR LSFT(NO_LESS)  #define NO_SCLN LSFT(KC_COMM)  #define NO_COLN LSFT(KC_DOT)  #define NO_UNDS LSFT(NO_MINS) - -// Alt Gr-ed characters -#define NO_AT ALGR(KC_2) -#define NO_PND ALGR(KC_3) -#define NO_DLR ALGR(KC_4) -#define NO_LCBR ALGR(KC_7) -#define NO_LBRC ALGR(KC_8) -#define NO_RBRC ALGR(KC_9) -#define NO_RCBR ALGR(KC_0) +#define NO_AT   ALGR(KC_2)    +#define NO_PND  ALGR(KC_3)    +#define NO_DLR  ALGR(KC_4)    +#define NO_LCBR ALGR(KC_7)    +#define NO_LBRC ALGR(KC_8)    +#define NO_RBRC ALGR(KC_9)    +#define NO_RCBR ALGR(KC_0)     #define NO_PIPE ALGR(KC_NUBS) - -#define NO_EURO ALGR(KC_E) +#define NO_EURO ALGR(KC_E)     #define NO_TILD ALGR(NO_QUOT) -  #define NO_BSLS ALGR(KC_MINS) -#define NO_MU ALGR(KC_M) +#define NO_MU   ALGR(KC_M)    + diff --git a/quantum/keymap_extras/keymap_norman.h b/quantum/keymap_extras/keymap_norman.h index 9f20f66873..1f773bb410 100644 --- a/quantum/keymap_extras/keymap_norman.h +++ b/quantum/keymap_extras/keymap_norman.h @@ -1,39 +1,33 @@ -/* Copyright 2019 Torben Hoffmann - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ D │ F │ K │ J │ U │ R │ L │ ; │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ E │ T │ G │ Y │ N │ I │ O │ H │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ P │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define NM_GRV  KC_GRV  // `  #define NM_1    KC_1    // 1  #define NM_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define NM_0    KC_0    // 0  #define NM_MINS KC_MINS // -  #define NM_EQL  KC_EQL  // = -// Row 2  #define NM_Q    KC_Q    // Q  #define NM_W    KC_W    // W  #define NM_D    KC_E    // D @@ -61,7 +54,6 @@  #define NM_LBRC KC_LBRC // [  #define NM_RBRC KC_RBRC // ]  #define NM_BSLS KC_BSLS // (backslash) -// Row 3  #define NM_A    KC_A    // A  #define NM_S    KC_S    // S  #define NM_E    KC_D    // E @@ -73,7 +65,6 @@  #define NM_O    KC_L    // O  #define NM_H    KC_SCLN // H  #define NM_QUOT KC_QUOT // ' -// Row 4  #define NM_Z    KC_Z    // Z  #define NM_X    KC_X    // X  #define NM_C    KC_C    // C @@ -84,21 +75,6 @@  #define NM_COMM KC_COMM // ,  #define NM_DOT  KC_DOT  // .  #define NM_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │ : │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define NM_TILD S(NM_GRV)  // ~  #define NM_EXLM S(NM_1)    // !  #define NM_AT   S(NM_2)    // @ @@ -112,14 +88,12 @@  #define NM_RPRN S(NM_0)    // )  #define NM_UNDS S(NM_MINS) // _  #define NM_PLUS S(NM_EQL)  // + -// Row 2  #define NM_COLN S(NM_SCLN) // :  #define NM_LCBR S(NM_LBRC) // {  #define NM_RCBR S(NM_RBRC) // }  #define NM_PIPE S(NM_BSLS) // | -// Row 3  #define NM_DQUO S(NM_QUOT) // " -// Row 4  #define NM_LABK S(NM_COMM) // <  #define NM_RABK S(NM_DOT)  // >  #define NM_QUES S(NM_SLSH) // ? + diff --git a/quantum/keymap_extras/keymap_norwegian.h b/quantum/keymap_extras/keymap_norwegian.h index b2499f4fda..33193d6a4d 100644 --- a/quantum/keymap_extras/keymap_norwegian.h +++ b/quantum/keymap_extras/keymap_norwegian.h @@ -1,39 +1,33 @@ -/* Copyright 2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ | │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ \ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ø │ Æ │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define NO_PIPE KC_GRV  // |  #define NO_1    KC_1    // 1  #define NO_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define NO_0    KC_0    // 0  #define NO_PLUS KC_MINS // +  #define NO_BSLS KC_EQL  // (backslash) -// Row 2  #define NO_Q    KC_Q    // Q  #define NO_W    KC_W    // W  #define NO_E    KC_E    // E @@ -60,7 +53,6 @@  #define NO_P    KC_P    // P  #define NO_ARNG KC_LBRC // Å  #define NO_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define NO_A    KC_A    // A  #define NO_S    KC_S    // S  #define NO_D    KC_D    // D @@ -73,7 +65,6 @@  #define NO_OSTR KC_SCLN // Ø  #define NO_AE   KC_QUOT // Æ  #define NO_QUOT KC_NUHS // ' -// Row 4  #define NO_LABK KC_NUBS // <  #define NO_Z    KC_Z    // Z  #define NO_X    KC_X    // X @@ -85,21 +76,6 @@  #define NO_COMM KC_COMM // ,  #define NO_DOT  KC_DOT  // .  #define NO_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ ! │ " │ # │ ¤ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define NO_SECT S(NO_PIPE) // §  #define NO_EXLM S(NO_1)    // !  #define NO_DQUO S(NO_2)    // " @@ -113,30 +89,12 @@  #define NO_EQL  S(NO_0)    // =  #define NO_QUES S(NO_PLUS) // ?  #define NO_GRV  S(NO_BSLS) // ` (dead) -// Row 2  #define NO_CIRC S(NO_DIAE) // ^ (dead) -// Row 3  #define NO_ASTR S(NO_QUOT) // * -// Row 4  #define NO_RABK S(NO_LABK) // >  #define NO_SCLN S(NO_COMM) // ;  #define NO_COLN S(NO_DOT)  // :  #define NO_UNDS S(NO_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ $ │ € │   │ { │ [ │ ] │ } │   │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define NO_AT   ALGR(NO_2)    // @  #define NO_PND  ALGR(NO_3)    // £  #define NO_DLR  ALGR(NO_4)    // $ @@ -146,7 +104,6 @@  #define NO_RBRC ALGR(NO_9)    // ]  #define NO_RCBR ALGR(NO_0)    // }  #define NO_ACUT ALGR(NO_BSLS) // ´ (dead) -// Row 2  #define NO_TILD ALGR(NO_DIAE) // ~ (dead) -// Row 4  #define NO_MICR ALGR(NO_M)    // µ + diff --git a/quantum/keymap_extras/keymap_plover.h b/quantum/keymap_extras/keymap_plover.h index cd07211bca..b51e44b8bb 100644 --- a/quantum/keymap_extras/keymap_plover.h +++ b/quantum/keymap_extras/keymap_plover.h @@ -1,65 +1,54 @@ -/* Copyright 2016 James Kay - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │Num│   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ S │ T │ P │ H │   │ * │ F │ P │ L │ T │ D │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │ K │ W │ R │   │   │ R │ B │ G │ S │ Z │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │ A │ O │   │ E │ U │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 -#define PV_NUM  KC_1 - -// Row 2 -#define PV_LS   KC_Q -#define PV_LT   KC_W -#define PV_LP   KC_E -#define PV_LH   KC_R -#define PV_STAR KC_Y -#define PV_RF   KC_U -#define PV_RP   KC_I -#define PV_RL   KC_O -#define PV_RT   KC_P +// Aliases +#define PV_NUM  KC_1    +#define PV_LS   KC_Q    +#define PV_LT   KC_W    +#define PV_LP   KC_E    +#define PV_LH   KC_R    +#define PV_STAR KC_Y    +#define PV_RF   KC_U    +#define PV_RP   KC_I    +#define PV_RL   KC_O    +#define PV_RT   KC_P     #define PV_RD   KC_LBRC - -// Row 3 -#define PV_LK   KC_S -#define PV_LW   KC_D -#define PV_LR   KC_F -#define PV_RR   KC_J -#define PV_RB   KC_K -#define PV_RG   KC_L +#define PV_LK   KC_S    +#define PV_LW   KC_D    +#define PV_LR   KC_F    +#define PV_RR   KC_J    +#define PV_RB   KC_K    +#define PV_RG   KC_L     #define PV_RS   KC_SCLN  #define PV_RZ   KC_QUOT +#define PV_A    KC_C    +#define PV_O    KC_V    +#define PV_E    KC_N    +#define PV_U    KC_M    -// Row 4 -#define PV_A    KC_C -#define PV_O    KC_V -#define PV_E    KC_N -#define PV_U    KC_M diff --git a/quantum/keymap_extras/keymap_plover_dvorak.h b/quantum/keymap_extras/keymap_plover_dvorak.h index 445a123151..f8341f8cbc 100644 --- a/quantum/keymap_extras/keymap_plover_dvorak.h +++ b/quantum/keymap_extras/keymap_plover_dvorak.h @@ -1,45 +1,54 @@ -/* Copyright 2016 James Kay - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once - -#include "keymap_dvorak.h" +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ -#define PD_NUM DV_1 -#define PD_LS DV_Q -#define PD_LT DV_W -#define PD_LP DV_E -#define PD_LH DV_R -#define PD_LK DV_S -#define PD_LW DV_D -#define PD_LR DV_F +#pragma once +#include "keymap.h" +// clang-format off -#define PD_STAR DV_Y -#define PD_RF DV_U -#define PD_RP DV_I -#define PD_RL DV_O -#define PD_RT DV_P -#define PD_RD DV_LBRC -#define PD_RR DV_J -#define PD_RB DV_K -#define PD_RG DV_L -#define PD_RS DV_SCLN -#define PD_RZ DV_QUOT +// Aliases +#define PD_NUM  DV_1    +#define PD_LS   DV_Q    +#define PD_LT   DV_W    +#define PD_LP   DV_E    +#define PD_LH   DV_R    +#define PD_LK   DV_S    +#define PD_LW   DV_D    +#define PD_LR   DV_F    +#define PD_STAR DV_Y    +#define PD_RF   DV_U    +#define PD_RP   DV_I    +#define PD_RL   DV_O    +#define PD_RT   DV_P    +#define PD_RD   DV_LBRC +#define PD_RR   DV_J    +#define PD_RB   DV_K    +#define PD_RG   DV_L    +#define PD_RS   DV_SCLN +#define PD_RZ   DV_QUOT +#define PD_A    DV_C    +#define PD_O    DV_V    +#define PD_E    DV_N    +#define PD_U    DV_M    -#define PD_A DV_C -#define PD_O DV_V -#define PD_E DV_N -#define PD_U DV_M diff --git a/quantum/keymap_extras/keymap_polish.h b/quantum/keymap_extras/keymap_polish.h index e5a32f22db..6b37d77a0a 100644 --- a/quantum/keymap_extras/keymap_polish.h +++ b/quantum/keymap_extras/keymap_polish.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define PL_GRV  KC_GRV  // `  #define PL_1    KC_1    // 1  #define PL_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define PL_0    KC_0    // 0  #define PL_MINS KC_MINS // -  #define PL_EQL  KC_EQL  // = -// Row 2  #define PL_Q    KC_Q    // Q  #define PL_W    KC_W    // W  #define PL_E    KC_E    // E @@ -61,7 +54,6 @@  #define PL_LBRC KC_LBRC // [  #define PL_RBRC KC_RBRC // ]  #define PL_BSLS KC_BSLS // (backslash) -// Row 3  #define PL_A    KC_A    // A  #define PL_S    KC_S    // S  #define PL_D    KC_D    // D @@ -73,7 +65,6 @@  #define PL_L    KC_L    // L  #define PL_SCLN KC_SCLN // ;  #define PL_QUOT KC_QUOT // ' -// Row 4  #define PL_Z    KC_Z    // Z  #define PL_X    KC_X    // X  #define PL_C    KC_C    // C @@ -84,21 +75,6 @@  #define PL_COMM KC_COMM // ,  #define PL_DOT  KC_DOT  // .  #define PL_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define PL_TILD S(PL_GRV)  // ~  #define PL_EXLM S(PL_1)    // !  #define PL_AT   S(PL_2)    // @ @@ -112,41 +88,22 @@  #define PL_RPRN S(PL_0)    // )  #define PL_UNDS S(PL_MINS) // _  #define PL_PLUS S(PL_EQL)  // + -// Row 2  #define PL_LCBR S(PL_LBRC) // {  #define PL_RCBR S(PL_RBRC) // }  #define PL_PIPE S(PL_BSLS) // | -// Row 3  #define PL_COLN S(PL_SCLN) // :  #define PL_DQUO S(PL_QUOT) // " -// Row 4  #define PL_LABK S(PL_COMM) // <  #define PL_RABK S(PL_DOT)  // >  #define PL_QUES S(PL_SLSH) // ? +#define PL_EOGO ALGR(PL_E)    // Ę +#define PL_EURO ALGR(PL_U)    // € +#define PL_OACU ALGR(PL_O)    // Ó +#define PL_AOGO ALGR(PL_A)    // Ą +#define PL_SACU ALGR(PL_S)    // Ś +#define PL_LSTR ALGR(PL_L)    // Ł +#define PL_ZDOT ALGR(PL_Z)    // Ż +#define PL_ZACU ALGR(PL_X)    // Ź +#define PL_CACU ALGR(PL_C)    // Ć +#define PL_NACU ALGR(PL_N)    // Ń -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ Ę │   │   │   │ € │   │ Ó │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Ą │ Ś │   │   │   │   │   │   │ Ł │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Ż │ Ź │ Ć │   │   │ Ń │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 2 -#define PL_EOGO ALGR(PL_E)  // Ę -#define PL_EURO ALGR(PL_U)  // € -#define PL_OACU ALGR(PL_O)  // Ó -// Row 3 -#define PL_AOGO ALGR(PL_A)  // Ą -#define PL_SACU ALGR(PL_S)  // Ś -#define PL_LSTR ALGR(PL_L)  // Ł -// Row 4 -#define PL_ZDOT ALGR(PL_Z)  // Ż -#define PL_ZACU ALGR(PL_X)  // Ź -#define PL_CACU ALGR(PL_C)  // Ć -#define PL_NACU ALGR(PL_N)  // Ń diff --git a/quantum/keymap_extras/keymap_portuguese.h b/quantum/keymap_extras/keymap_portuguese.h index 19d7dcd817..17da9a6c11 100644 --- a/quantum/keymap_extras/keymap_portuguese.h +++ b/quantum/keymap_extras/keymap_portuguese.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ \ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ « │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ + │ ´ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ç │ º │ ~ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define PT_BSLS KC_GRV  // (backslash)  #define PT_1    KC_1    // 1  #define PT_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define PT_0    KC_0    // 0  #define PT_QUOT KC_MINS // '  #define PT_LDAQ KC_EQL  // « -// Row 2  #define PT_Q    KC_Q    // Q  #define PT_W    KC_W    // W  #define PT_E    KC_E    // E @@ -60,7 +53,6 @@  #define PT_P    KC_P    // P  #define PT_PLUS KC_LBRC // +  #define PT_ACUT KC_RBRC // ´ (dead) -// Row 3  #define PT_A    KC_A    // A  #define PT_S    KC_S    // S  #define PT_D    KC_D    // D @@ -73,7 +65,6 @@  #define PT_CCED KC_SCLN // Ç  #define PT_MORD KC_QUOT // º  #define PT_TILD KC_NUHS // ~ (dead) -// Row 4  #define PT_LABK KC_NUBS // <  #define PT_Z    KC_Z    // Z  #define PT_X    KC_X    // X @@ -85,21 +76,6 @@  #define PT_COMM KC_COMM // ,  #define PT_DOT  KC_DOT  // .  #define PT_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ | │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ » │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ * │ ` │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ª │ ^ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define PT_PIPE S(PT_BSLS) // |  #define PT_EXLM S(PT_1)    // !  #define PT_DQUO S(PT_2)    // " @@ -113,32 +89,14 @@  #define PT_EQL  S(PT_0)    // =  #define PT_QUES S(PT_QUOT) // ?  #define PT_RDAQ S(PT_LDAQ) // » -// Row 2  #define PT_ASTR S(PT_PLUS) // *  #define PT_GRV  S(PT_ACUT) // ` (dead) -// Row 3  #define PT_FORD S(PT_MORD) // ª  #define PT_CIRC S(PT_TILD) // ^ (dead) -// Row 4  #define PT_RABK S(PT_LABK) // >  #define PT_SCLN S(PT_COMM) // ;  #define PT_COLN S(PT_DOT)  // :  #define PT_UNDS S(PT_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ § │   │   │ { │ [ │ ] │ } │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ ¨ │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define PT_AT   ALGR(PT_2)    // @  #define PT_PND  ALGR(PT_3)    // £  #define PT_SECT ALGR(PT_4)    // § @@ -146,6 +104,6 @@  #define PT_LBRC ALGR(PT_8)    // [  #define PT_RBRC ALGR(PT_9)    // ]  #define PT_RCBR ALGR(PT_0)    // } -// Row 2  #define PT_DIAE ALGR(PT_PLUS) // ¨ (dead)  #define PT_EURO ALGR(PT_E)    // € + diff --git a/quantum/keymap_extras/keymap_portuguese_mac_iso.h b/quantum/keymap_extras/keymap_portuguese_mac_iso.h index 78346af285..3d34a39ae5 100644 --- a/quantum/keymap_extras/keymap_portuguese_mac_iso.h +++ b/quantum/keymap_extras/keymap_portuguese_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ + │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ º │ ´ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ç │ ~ │ \ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define PT_SECT KC_GRV  // §  #define PT_1    KC_1    // 1  #define PT_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define PT_0    KC_0    // 0  #define PT_QUOT KC_MINS // '  #define PT_PLUS KC_EQL  // + -// Row 2  #define PT_Q    KC_Q    // Q  #define PT_W    KC_W    // W  #define PT_E    KC_E    // E @@ -60,7 +53,6 @@  #define PT_P    KC_P    // P  #define PT_MORD KC_LBRC // º  #define PT_ACUT KC_RBRC // ´ (dead) -// Row 3  #define PT_A    KC_A    // A  #define PT_S    KC_S    // S  #define PT_D    KC_D    // D @@ -73,7 +65,6 @@  #define PT_CCED KC_SCLN // Ç  #define PT_TILD KC_QUOT // ~ (dead)  #define PT_BSLS KC_NUHS // (backslash) -// Row 4  #define PT_LABK KC_NUBS // <  #define PT_Z    KC_Z    // Z  #define PT_X    KC_X    // X @@ -85,21 +76,6 @@  #define PT_COMM KC_COMM // ,  #define PT_DOT  KC_DOT  // .  #define PT_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ± │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ * │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ª │ ` │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │   │ ^ │ | │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define PT_PLMN S(PT_SECT) // ±  #define PT_EXLM S(PT_1)    // !  #define PT_DQUO S(PT_2)    // " @@ -113,32 +89,14 @@  #define PT_EQL  S(PT_0)    // =  #define PT_QUES S(PT_QUOT) // ?  #define PT_ASTR S(PT_PLUS) // * -// Row 2  #define PT_FORD S(PT_MORD) // ª  #define PT_GRV  S(PT_ACUT) // ` (dead) -// Row 3  #define PT_CIRC S(PT_TILD) // ^ (dead)  #define PT_PIPE S(PT_BSLS) // | -// Row 4  #define PT_RABK S(PT_LABK) // >  #define PT_SCLN S(PT_COMM) // ;  #define PT_COLN S(PT_DOT)  // :  #define PT_UNDS S(PT_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │   │  │ @ │ € │ £ │ ‰ │ ¶ │ ÷ │ [ │ ] │ ≠ │   │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Œ │ ∑ │ Æ │ ® │ ™ │ ¥ │ † │ ı │ Ø │ π │ ° │ ¨ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ Å │ ß │ ∂ │ ƒ │ ˙ │ ˇ │ ¯ │ „ │ ‘ │ ¸ │ ˜ │ ‹ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ Ω │ « │ © │ √ │ ∫ │ ¬ │ µ │ “ │ … │ — │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define PT_APPL A(PT_1)    //  (Apple logo)  #define PT_AT   A(PT_2)    // @  #define PT_EURO A(PT_3)    // € @@ -149,7 +107,6 @@  #define PT_LBRC A(PT_8)    // [  #define PT_RBRC A(PT_9)    // ]  #define PT_NEQL A(PT_0)    // ≠ -// Row 2  #define PT_OE   A(PT_Q)    // Œ  #define PT_NARS A(PT_W)    // ∑  #define PT_AE   A(PT_E)    // Æ @@ -162,7 +119,6 @@  #define PT_PI   A(PT_P)    // π  #define PT_DEG  A(PT_MORD) // °  #define PT_DIAE A(PT_ACUT) // ¨ (dead) -// Row 3  #define PT_ARNG A(PT_A)    // å  #define PT_SS   A(PT_S)    // ß  #define PT_PDIF A(PT_D)    // ∂ @@ -175,7 +131,6 @@  #define PT_CEDL A(PT_CCED) // ¸  #define PT_STIL A(PT_TILD) // ˜ (dead)  #define PT_LSAQ A(PT_BSLS) // ‹ -// Row 4  #define PT_LTEQ A(PT_LABK) // ≤  #define PT_OMEG A(PT_Z)    // Ω  #define PT_LDAQ A(PT_X)    // « @@ -187,21 +142,6 @@  #define PT_LDQU A(PT_COMM) // “  #define PT_ELLP A(PT_DOT)  // …  #define PT_MDSH A(PT_MINS) // — - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │   │ ¡ │ fi │ fl │ ¢ │ ∞ │ • │ ⁄ │ { │ } │ ≈ │ ¿ │ ◊ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │ ‡ │ ˚ │   │ ∏ │   │ ˝ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │ ∆ │   │   │   │   │ ‚ │ ’ │ ˛ │ ˆ │ › │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │   │ » │   │   │   │   │   │ ” │ · │ – │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define PT_IEXL S(A(PT_1))    // ¡  #define PT_FI   S(A(PT_2))    // fi  #define PT_FL   S(A(PT_3))    // fl @@ -214,21 +154,19 @@  #define PT_AEQL S(A(PT_0))    // ≈  #define PT_IQUE S(A(PT_QUOT)) // ¿  #define PT_LOZN S(A(PT_PLUS)) // ◊ -// Row 2  #define PT_DDAG S(A(PT_U))    // ‡  #define PT_RNGA S(A(PT_I))    // ˚  #define PT_NARP S(A(PT_P))    // ∏  #define PT_DACU S(A(PT_ACUT)) // ˝ -// Row 3  #define PT_INCR S(A(PT_D))    // ∆  #define PT_SLQU S(A(PT_K))    // ‚  #define PT_RSQU S(A(PT_L))    // ’  #define PT_OGON S(A(PT_CCED)) // ˛  #define PT_DCIR S(A(PT_TILD)) // ˆ (dead)  #define PT_RSAQ S(A(PT_BSLS)) // › -// Row 4  #define PT_GTEQ S(A(PT_LABK)) // ≥  #define PT_RDAQ S(A(PT_X))    // »  #define PT_RDQU S(A(PT_COMM)) // ”  #define PT_MDDT S(A(PT_DOT))  // ·  #define PT_NDSH S(A(PT_MINS)) // – + diff --git a/quantum/keymap_extras/keymap_romanian.h b/quantum/keymap_extras/keymap_romanian.h index 27086d684c..fb48a0fda7 100644 --- a/quantum/keymap_extras/keymap_romanian.h +++ b/quantum/keymap_extras/keymap_romanian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ „ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Ă │ Î │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ș │ Ț │  │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define RO_DLQU KC_GRV  // „  #define RO_1    KC_1    // 1  #define RO_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define RO_0    KC_0    // 0  #define RO_MINS KC_MINS // -  #define RO_EQL  KC_EQL  // = -// Row 2  #define RO_Q    KC_Q    // Q  #define RO_W    KC_W    // W  #define RO_E    KC_E    // E @@ -60,7 +53,6 @@  #define RO_P    KC_P    // P  #define RO_ABRV KC_LBRC // Ă  #define RO_ICIR KC_RBRC // Î -// Row 3  #define RO_A    KC_A    // A  #define RO_S    KC_S    // S  #define RO_D    KC_D    // D @@ -73,7 +65,6 @@  #define RO_SCOM KC_SCLN // Ș  #define RO_TCOM KC_QUOT // Ț  #define RO_ACIR KC_NUHS //  -// Row 4  #define RO_BSLS KC_NUBS // (backslash)  #define RO_Z    KC_Z    // Z  #define RO_X    KC_X    // X @@ -85,21 +76,6 @@  #define RO_COMM KC_COMM // ,  #define RO_DOT  KC_DOT  // .  #define RO_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ” │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │   │ ; │ : │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RO_RDQU S(RO_DLQU) // ”  #define RO_EXLM S(RO_1)    // !  #define RO_AT   S(RO_2)    // @ @@ -113,26 +89,10 @@  #define RO_RPRN S(RO_0)    // )  #define RO_UNDS S(RO_MINS) // _  #define RO_PLUS S(RO_EQL)  // + -// Row 4  #define RO_PIPE S(RO_BSLS) // |  #define RO_SCLN S(RO_COMM) // ;  #define RO_COLN S(RO_DOT)  // :  #define RO_QUES S(RO_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ ~ │ ˇ │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │ ´ │ ˝ │ ¨ │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │ § │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ ß │ Đ │   │   │   │   │   │ Ł │   │ ' │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │ © │   │   │   │   │ < │ > │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RO_GRV  ALGR(RO_DLQU) // `  #define RO_DTIL ALGR(RO_1)    // ~ (dead)  #define RO_CARN ALGR(RO_2)    // ˇ (dead) @@ -146,43 +106,23 @@  #define RO_DACU ALGR(RO_0)    // ˝ (dead)  #define RO_DIAE ALGR(RO_MINS) // ¨ (dead)  #define RO_CEDL ALGR(RO_EQL)  // ¸ (dead) -// Row 2  #define RO_EURO ALGR(RO_E)    // €  #define RO_SECT ALGR(RO_P)    // §  #define RO_LBRC ALGR(RO_ABRV) // [  #define RO_RBRC ALGR(RO_ICIR) // ] -// Row 3  #define RO_SS   ALGR(RO_S)    // ß  #define RO_DSTR ALGR(RO_D)    // Đ  #define RO_LSTR ALGR(RO_L)    // Ł  #define RO_QUOT ALGR(RO_TCOM) // ' -// Row 4  #define RO_COPY ALGR(RO_C)    // ©  #define RO_LABK ALGR(RO_COMM) // <  #define RO_RABK ALGR(RO_DOT)  // > - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │   │   │   │   │   │   │   │   │   │   │ – │ ± │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ " │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │ « │ » │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RO_TILD S(ALGR(RO_DLQU)) // ~  #define RO_NDSH S(ALGR(RO_MINS)) // –  #define RO_PLMN S(ALGR(RO_EQL))  // ± -// Row 2  #define RO_LCBR S(ALGR(RO_ABRV)) // {  #define RO_RCBR S(ALGR(RO_ICIR)) // } -// Row 3  #define RO_DQUO S(ALGR(RO_TCOM)) // " -// Row 4  #define RO_LDAQ S(ALGR(RO_COMM)) // «  #define RO_RDAQ S(ALGR(RO_DOT))  // » + diff --git a/quantum/keymap_extras/keymap_russian.h b/quantum/keymap_extras/keymap_russian.h index 71aece677d..3643718444 100644 --- a/quantum/keymap_extras/keymap_russian.h +++ b/quantum/keymap_extras/keymap_russian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ Ё │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Й │ Ц │ У │ К │ Е │ Н │ Г │ Ш │ Щ │ З │ Х │ Ъ │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Ф │ Ы │ В │ А │ П │ Р │ О │ Л │ Д │ Ж │ Э │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Я │ Ч │ С │ М │ И │ Т │ Ь │ Б │ Ю │ . │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define RU_YO   KC_GRV  // Ё  #define RU_1    KC_1    // 1  #define RU_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define RU_0    KC_0    // 0  #define RU_MINS KC_MINS // -  #define RU_EQL  KC_EQL  // = -// Row 2  #define RU_SHTI KC_Q    // Й  #define RU_TSE  KC_W    // Ц  #define RU_U    KC_E    // У @@ -61,7 +54,6 @@  #define RU_HA   KC_LBRC // Х  #define RU_HARD KC_RBRC // Ъ  #define RU_BSLS KC_BSLS // (backslash) -// Row 3  #define RU_EF   KC_A    // Ф  #define RU_YERU KC_S    // Ы  #define RU_VE   KC_D    // В @@ -73,7 +65,6 @@  #define RU_DE   KC_L    // Д  #define RU_ZHE  KC_SCLN // Ж  #define RU_E    KC_QUOT // Э -// Row 4  #define RU_YA   KC_Z    // Я  #define RU_CHE  KC_X    // Ч  #define RU_ES   KC_C    // С @@ -84,21 +75,6 @@  #define RU_BE   KC_COMM // Б  #define RU_YU   KC_DOT  // Ю  #define RU_DOT  KC_SLSH // . - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ! │ " │ № │ ; │ % │ : │ ? │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │  /  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │ , │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RU_EXLM S(RU_1)    // !  #define RU_DQUO S(RU_2)    // "  #define RU_NUM  S(RU_3)    // № @@ -111,23 +87,7 @@  #define RU_RPRN S(RU_0)    // )  #define RU_UNDS S(RU_MINS) // _  #define RU_PLUS S(RU_EQL)  // + -// Row 2  #define RU_SLSH S(RU_BSLS) // / -// Row 4  #define RU_COMM S(RU_DOT)  // , +#define RU_RUBL ALGR(RU_8)    // ₽ -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │ ₽ │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 -#define RU_RUBL ALGR(RU_8) // ₽ diff --git a/quantum/keymap_extras/keymap_serbian.h b/quantum/keymap_extras/keymap_serbian.h index a17dcc5f34..dd1bda7533 100644 --- a/quantum/keymap_extras/keymap_serbian.h +++ b/quantum/keymap_extras/keymap_serbian.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Љ │ Њ │ Е │ Р │ Т │ З │ У │ И │ О │ П │ Ш │ Ђ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ А │ С │ Д │ Ф │ Г │ Х │ Ј │ К │ Л │ Ч │ Ћ │ Ж │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Ѕ │ Џ │ Ц │ В │ Б │ Н │ М │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define RS_GRV  KC_GRV  // `  #define RS_1    KC_1    // 1  #define RS_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define RS_0    KC_0    // 0  #define RS_QUOT KC_MINS // ' (dead)  #define RS_PLUS KC_EQL  // + -// Row 2  #define RS_LJE  KC_Q    // Љ  #define RS_NJE  KC_W    // Њ  #define RS_IE   KC_E    // Е @@ -60,7 +53,6 @@  #define RS_PE   KC_P    // П  #define RS_SHA  KC_LBRC // Ш  #define RS_DJE  KC_RBRC // Ђ -// Row 3  #define RS_A    KC_A    // А  #define RS_ES   KC_S    // С  #define RS_DE   KC_D    // Д @@ -73,7 +65,6 @@  #define RS_CHE  KC_SCLN // Ч  #define RS_TSHE KC_QUOT // Ћ  #define RS_ZHE  KC_NUHS // Ж -// Row 4  #define RS_LABK KC_NUBS // <  #define RS_DZE  KC_Z    // Ѕ  #define RS_DZHE KC_X    // Џ @@ -85,21 +76,6 @@  #define RS_COMM KC_COMM // ,  #define RS_DOT  KC_DOT  // .  #define RS_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ * │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RS_TILD S(RS_GRV)  // ~  #define RS_EXLM S(RS_1)    // !  #define RS_DQUO S(RS_2)    // " @@ -113,24 +89,9 @@  #define RS_EQL  S(RS_0)    // =  #define RS_QUES S(RS_QUOT) // ?  #define RS_ASTR S(RS_PLUS) // * -// Row 4  #define RS_RABK S(RS_LABK) // >  #define RS_SCLN S(RS_COMM) // ;  #define RS_COLN S(RS_DOT)  // :  #define RS_UNDS S(RS_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 2  #define RS_EURO ALGR(RS_IE)   // € + diff --git a/quantum/keymap_extras/keymap_serbian_latin.h b/quantum/keymap_extras/keymap_serbian_latin.h index 13c82eb405..83495b63be 100644 --- a/quantum/keymap_extras/keymap_serbian_latin.h +++ b/quantum/keymap_extras/keymap_serbian_latin.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ‚ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Š │ Đ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Č │ Ć │ Ž │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define RS_SLQU KC_GRV  // ‚ (dead)  #define RS_1    KC_1    // 1  #define RS_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define RS_0    KC_0    // 0  #define RS_QUOT KC_MINS // '  #define RS_PLUS KC_EQL  // + -// Row 2  #define RS_Q    KC_Q    // Q  #define RS_W    KC_W    // W  #define RS_E    KC_E    // E @@ -60,7 +53,6 @@  #define RS_P    KC_P    // P  #define RS_SCAR KC_LBRC // Š  #define RS_DSTR KC_RBRC // Đ -// Row 3  #define RS_A    KC_A    // A  #define RS_S    KC_S    // S  #define RS_D    KC_D    // D @@ -73,7 +65,6 @@  #define RS_CCAR KC_SCLN // Č  #define RS_CACU KC_QUOT // Ć  #define RS_ZCAR KC_NUHS // Ž -// Row 4  #define RS_LABK KC_NUBS // <  #define RS_Y    KC_Z    // Y  #define RS_X    KC_X    // X @@ -85,21 +76,6 @@  #define RS_COMM KC_COMM // ,  #define RS_DOT  KC_DOT  // .  #define RS_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ * │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RS_TILD S(RS_SLQU) // ~  #define RS_EXLM S(RS_1)    // !  #define RS_DQUO S(RS_2)    // " @@ -113,26 +89,10 @@  #define RS_EQL  S(RS_0)    // =  #define RS_QUES S(RS_QUOT) // ?  #define RS_ASTR S(RS_PLUS) // * -// Row 4  #define RS_RABK S(RS_LABK) // >  #define RS_SCLN S(RS_COMM) // ;  #define RS_COLN S(RS_DOT)  // :  #define RS_UNDS S(RS_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ ˇ │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │ ´ │ ˝ │ ¨ │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ \ │ | │ € │   │   │   │   │   │   │   │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │ [ │ ] │   │   │ ł │ Ł │   │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │ @ │ { │ } │ § │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define RS_CARN ALGR(RS_2)    // ˇ (dead)  #define RS_CIRC ALGR(RS_3)    // ^ (dead)  #define RS_BREV ALGR(RS_4)    // ˘ (dead) @@ -144,21 +104,19 @@  #define RS_DACU ALGR(RS_0)    // ˝ (dead)  #define RS_DIAE ALGR(RS_QUOT) // ¨ (dead)  #define RS_CEDL ALGR(RS_PLUS) // ¸ (dead) -// Row 2  #define RS_BSLS ALGR(RS_Q)    // (backslash)  #define RS_PIPE ALGR(RS_W)    // |  #define RS_EURO ALGR(RS_E)    // €  #define RS_DIV  ALGR(RS_SCAR) // ÷  #define RS_MUL  ALGR(RS_DSTR) // × -// Row 3  #define RS_LBRC ALGR(RS_F)    // [  #define RS_RBRC ALGR(RS_G)    // ]  #define RS_LLST ALGR(RS_K)    // ł  #define RS_CLST ALGR(RS_L)    // Ł  #define RS_SS   ALGR(RS_CACU) // ß  #define RS_CURR ALGR(RS_ZCAR) // ¤ -// Row 4  #define RS_AT   ALGR(RS_V)    // @  #define RS_LCBR ALGR(RS_B)    // {  #define RS_RCBR ALGR(RS_N)    // }  #define RS_SECT ALGR(RS_M)    // § + diff --git a/quantum/keymap_extras/keymap_slovak.h b/quantum/keymap_extras/keymap_slovak.h index bf0b7275ce..10714f1be9 100644 --- a/quantum/keymap_extras/keymap_slovak.h +++ b/quantum/keymap_extras/keymap_slovak.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ; │ + │ ľ │ š │ č │ ť │ ž │ ý │ á │ í │ é │ = │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ ú │ ä │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ô │ § │ ň │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ & │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define SK_SCLN KC_GRV  // ;  #define SK_PLUS KC_1    // +  #define SK_LCAR KC_2    // ľ @@ -47,7 +41,6 @@  #define SK_EACU KC_0    // é  #define SK_EQL  KC_MINS // =  #define SK_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SK_Q    KC_Q    // Q  #define SK_W    KC_W    // W  #define SK_E    KC_E    // E @@ -60,7 +53,6 @@  #define SK_P    KC_P    // P  #define SK_UACU KC_LBRC // ú  #define SK_ADIA KC_RBRC // ä -// Row 3  #define SK_A    KC_A    // A  #define SK_S    KC_S    // S  #define SK_D    KC_D    // D @@ -73,7 +65,6 @@  #define SK_OCIR KC_SCLN // ô  #define SK_SECT KC_QUOT // §  #define SK_NCAR KC_NUHS // ň -// Row 4  #define SK_AMPR KC_NUBS // &  #define SK_Y    KC_Z    // Y  #define SK_X    KC_X    // X @@ -85,21 +76,6 @@  #define SK_COMM KC_COMM // ,  #define SK_DOT  KC_DOT  // .  #define SK_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ % │ ˇ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ / │ ( │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ " │ ! │ ) │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ * │   │   │   │   │   │   │   │ ? │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SK_RNGA S(SK_SCLN) // ° (dead)  #define SK_1    S(SK_PLUS) // 1  #define SK_2    S(SK_LCAR) // 2 @@ -113,33 +89,15 @@  #define SK_0    S(SK_EACU) // 0  #define SK_PERC S(SK_EQL)  // %  #define SK_CARN S(SK_ACUT) // ˇ (dead) -// Row 2  #define SK_SLSH S(SK_UACU) // /  #define SK_LPRN S(SK_ADIA) // ( -// Row 3  #define SK_DQUO S(SK_OCIR) // "  #define SK_EXLM S(SK_SECT) // !  #define SK_RPRN S(SK_NCAR) // ) -// Row 4  #define SK_ASTR S(SK_AMPR) // *  #define SK_QUES S(SK_COMM) // ?  #define SK_COLN S(SK_DOT)  // :  #define SK_UNDS S(SK_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ~ │   │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │   │ ˝ │ ¨ │ ¸ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ \ │ | │ € │   │   │   │   │   │   │ ' │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ đ │ Đ │ [ │ ] │   │   │ ł │ Ł │ $ │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ > │ # │   │ @ │ { │ } │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SK_TILD ALGR(SK_PLUS) // ~  #define SK_CIRC ALGR(SK_SCAR) // ^ (dead)  #define SK_BREV ALGR(SK_CCAR) // ˘ (dead) @@ -149,14 +107,12 @@  #define SK_DACU ALGR(SK_EACU) // ˝ (dead)  #define SK_DIAE ALGR(SK_EQL)  // ¨ (dead)  #define SK_CEDL ALGR(SK_ACUT) // ¸ (dead) -// Row 2  #define SK_BSLS ALGR(SK_Q)    // (backslash)  #define SK_PIPE ALGR(SK_W)    // |  #define SK_EURO ALGR(SK_E)    // €  #define SK_QUOT ALGR(SK_P)    // '  #define SK_DIV  ALGR(SK_UACU) // ÷  #define SK_MUL  ALGR(SK_ADIA) // × -// Row 3  #define SK_LDST ALGR(SK_S)    // đ  #define SK_CDST ALGR(SK_D)    // Đ  #define SK_LBRC ALGR(SK_F)    // [ @@ -166,10 +122,10 @@  #define SK_DLR  ALGR(SK_OCIR) // $  #define SK_SS   ALGR(SK_SECT) // ß  #define SK_CURR ALGR(SK_NCAR) // ¤ -// Row 4  #define SK_LABK ALGR(SK_AMPR) // <  #define SK_RABK ALGR(SK_Y)    // >  #define SK_HASH ALGR(SK_X)    // #  #define SK_AT   ALGR(SK_V)    // @  #define SK_LCBR ALGR(SK_B)    // {  #define SK_RCBR ALGR(SK_N)    // } + diff --git a/quantum/keymap_extras/keymap_slovenian.h b/quantum/keymap_extras/keymap_slovenian.h index 827fa06c25..30910530e0 100644 --- a/quantum/keymap_extras/keymap_slovenian.h +++ b/quantum/keymap_extras/keymap_slovenian.h @@ -1,39 +1,33 @@ -/* Copyright 2018 Žan Pevec - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¸ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ Š │ Đ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Č │ Ć │ Ž │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define SI_CEDL KC_GRV  // ¸ (dead)  #define SI_1    KC_1    // 1  #define SI_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SI_0    KC_0    // 0  #define SI_QUOT KC_MINS // '  #define SI_PLUS KC_EQL  // + -// Row 2  #define SI_Q    KC_Q    // Q  #define SI_W    KC_W    // W  #define SI_E    KC_E    // E @@ -60,7 +53,6 @@  #define SI_P    KC_P    // P  #define SI_SCAR KC_LBRC // Š  #define SI_DSTR KC_RBRC // Đ -// Row 3  #define SI_A    KC_A    // A  #define SI_S    KC_S    // S  #define SI_D    KC_D    // D @@ -73,7 +65,6 @@  #define SI_CCAR KC_SCLN // Č  #define SI_CACU KC_QUOT // Ć  #define SI_ZCAR KC_NUHS // Ž -// Row 4  #define SI_LABK KC_NUBS // <  #define SI_Y    KC_Z    // Y  #define SI_X    KC_X    // X @@ -85,21 +76,6 @@  #define SI_COMM KC_COMM // ,  #define SI_DOT  KC_DOT  // .  #define SI_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¨ │ ! │ " │ # │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ * │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SI_DIAE S(SI_CEDL) // ¨ (dead)  #define SI_EXLM S(SI_1)    // !  #define SI_DQUO S(SI_2)    // " @@ -113,26 +89,10 @@  #define SI_EQL  S(SI_0)    // =  #define SI_QUES S(SI_QUOT) // ?  #define SI_ASTR S(SI_PLUS) // * -// Row 4  #define SI_RABK S(SI_LABK) // >  #define SI_SCLN S(SI_COMM) // ;  #define SI_COLN S(SI_DOT)  // :  #define SI_UNDS S(SI_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ~ │ ˇ │ ^ │ ˘ │ ° │ ˛ │ ` │ ˙ │ ´ │ ˝ │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ \ │ | │ € │   │   │   │   │   │   │   │ ÷ │ × │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │ [ │ ] │   │   │ ł │ Ł │   │ ß │ ¤ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │ @ │ { │ } │ § │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SI_TILD ALGR(SI_1)    // ~  #define SI_CARN ALGR(SI_2)    // ˇ (dead)  #define SI_CIRC ALGR(SI_3)    // ^ (dead) @@ -143,21 +103,19 @@  #define SI_DOTA ALGR(SI_8)    // ˙ (dead)  #define SI_ACUT ALGR(SI_9)    // ´ (dead)  #define SI_DACU ALGR(SI_0)    // ˝ (dead) -// Row 2  #define SI_BSLS ALGR(SI_Q)    // (backslash)  #define SI_PIPE ALGR(SI_W)    // |  #define SI_EURO ALGR(SI_E)    // €  #define SI_DIV  ALGR(SI_SCAR) // ÷  #define SI_MUL  ALGR(SI_DSTR) // × -// Row 3  #define SI_LBRC ALGR(SI_F)    // [  #define SI_RBRC ALGR(SI_G)    // ]  #define SI_LLST ALGR(SI_K)    // ł  #define SI_CLST ALGR(SI_L)    // Ł  #define SI_SS   ALGR(SI_CACU) // ß  #define SI_CURR ALGR(SI_ZCAR) // ¤ -// Row 4  #define SI_AT   ALGR(SI_V)    // @  #define SI_LCBR ALGR(SI_B)    // {  #define SI_RCBR ALGR(SI_N)    // }  #define SI_SECT ALGR(SI_M)    // § + diff --git a/quantum/keymap_extras/keymap_spanish.h b/quantum/keymap_extras/keymap_spanish.h index 8432c56e99..cac16c08a5 100644 --- a/quantum/keymap_extras/keymap_spanish.h +++ b/quantum/keymap_extras/keymap_spanish.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ º │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ¡ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ ` │ + │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ñ │ ´ │ Ç │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define ES_MORD KC_GRV  // º  #define ES_1    KC_1    // 1  #define ES_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define ES_0    KC_0    // 0  #define ES_QUOT KC_MINS // '  #define ES_IEXL KC_EQL  // ¡ -// Row 2  #define ES_Q    KC_Q    // Q  #define ES_W    KC_W    // W  #define ES_E    KC_E    // E @@ -60,7 +53,6 @@  #define ES_P    KC_P    // P  #define ES_GRV  KC_LBRC // ` (dead)  #define ES_PLUS KC_RBRC // + -// Row 3  #define ES_A    KC_A    // A  #define ES_S    KC_S    // S  #define ES_D    KC_D    // D @@ -73,7 +65,6 @@  #define ES_NTIL KC_SCLN // Ñ  #define ES_ACUT KC_QUOT // ´ (dead)  #define ES_CCED KC_NUHS // Ç -// Row 4  #define ES_LABK KC_NUBS // <  #define ES_Z    KC_Z    // Z  #define ES_X    KC_X    // X @@ -85,21 +76,6 @@  #define ES_COMM KC_COMM // ,  #define ES_DOT  KC_DOT  // .  #define ES_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ª │ ! │ " │ · │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ¿ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ^ │ * │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ¨ │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define ES_FORD S(ES_MORD) // ª  #define ES_EXLM S(ES_1)    // !  #define ES_DQUO S(ES_2)    // " @@ -113,31 +89,13 @@  #define ES_EQL  S(ES_0)    // =  #define ES_QUES S(ES_QUOT) // ?  #define ES_IQUE S(ES_IEXL) // ¿ -// Row 2  #define ES_CIRC S(ES_GRV)  // ^ (dead)  #define ES_ASTR S(ES_PLUS) // * -// Row 3  #define ES_DIAE S(ES_ACUT) // ¨ (dead) -// Row 4  #define ES_RABK S(ES_LABK) // >  #define ES_SCLN S(KC_COMM) // ;  #define ES_COLN S(KC_DOT)  // :  #define ES_UNDS S(ES_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ \ │ | │ @ │ # │ ~ │ € │ ¬ │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ { │ } │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define ES_BSLS ALGR(ES_MORD) // (backslash)  #define ES_PIPE ALGR(ES_1)    // |  #define ES_AT   ALGR(ES_2)    // @ @@ -145,9 +103,8 @@  #define ES_TILD ALGR(ES_4)    // ~  #define ES_EURO ALGR(ES_5)    // €  #define ES_NOT  ALGR(ES_6)    // ¬ -// Row 2  #define ES_LBRC ALGR(ES_GRV)  // [  #define ES_RBRC ALGR(ES_PLUS) // ] -// Row 3  #define ES_LCBR ALGR(ES_ACUT) // {  #define ES_RCBR ALGR(ES_CCED) // } + diff --git a/quantum/keymap_extras/keymap_spanish_dvorak.h b/quantum/keymap_extras/keymap_spanish_dvorak.h index ea0c93f86a..1feab96b8c 100644 --- a/quantum/keymap_extras/keymap_spanish_dvorak.h +++ b/quantum/keymap_extras/keymap_spanish_dvorak.h @@ -1,39 +1,33 @@ -/* Copyright 2020 José Andrés García - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ º │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ¡ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ . │ , │ Ñ │ P │ Y │ F │ G │ C │ H │ L │ ` │ + │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ O │ E │ U │ I │ D │ R │ T │ N │ S │ ´ │ Ç │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ - │ Q │ J │ K │ X │ B │ M │ W │ V │ Z │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define DV_MORD KC_GRV  // º  #define DV_1    KC_1    // 1  #define DV_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define DV_0    KC_0    // 0  #define DV_QUOT KC_MINS // '  #define DV_IEXL KC_EQL  // ¡ -// Row 2  #define DV_DOT  KC_Q    // .  #define DV_COMM KC_W    // ,  #define DV_NTIL KC_E    // Ñ @@ -60,7 +53,6 @@  #define DV_L    KC_P    // L  #define DV_GRV  KC_LBRC // ` (dead)  #define DV_PLUS KC_RBRC // + -// Row 3  #define DV_A    KC_A    // A  #define DV_O    KC_S    // O  #define DV_E    KC_D    // E @@ -73,7 +65,6 @@  #define DV_S    KC_SCLN // S  #define DV_ACUT KC_QUOT // ´ (dead)  #define DV_CCED KC_NUHS // Ç -// Row 4  #define DV_LABK KC_NUBS // <  #define DV_MINS KC_Z    // -  #define DV_Q    KC_X    // Q @@ -85,21 +76,6 @@  #define DV_W    KC_COMM // W  #define DV_V    KC_DOT  // V  #define DV_Z    KC_SLSH // Z - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ª │ ! │ " │ · │ $ │ % │ & │ / │ ( │ ) │ = │ ? │ ¿ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ : │ ; │   │   │   │   │   │   │   │   │ ^ │ * │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ ¨ │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │ _ │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DV_FORD S(DV_MORD) // ª  #define DV_EXLM S(DV_1)    // !  #define DV_DQUO S(DV_2)    // " @@ -113,31 +89,13 @@  #define DV_EQL  S(DV_0)    // =  #define DV_QUES S(DV_QUOT) // ?  #define DV_IQUE S(DV_IEXL) // ¿ -// Row 2  #define DV_COLN S(DV_DOT)  // :  #define DV_SCLN S(DV_COMM) // ;  #define DV_CIRC S(DV_GRV)  // ^ (dead)  #define DV_ASTR S(DV_PLUS) // * -// Row 3  #define DV_DIAE S(DV_ACUT) // ¨ (dead) -// Row 4  #define DV_RABK S(DV_LABK) // >  #define DV_UNDS S(DV_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ \ │ | │ @ │ # │ ~ │ € │ ¬ │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ { │ } │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define DV_BSLS ALGR(DV_MORD) // (backslash)  #define DV_PIPE ALGR(DV_1)    // |  #define DV_AT   ALGR(DV_2)    // @ @@ -145,9 +103,8 @@  #define DV_TILD ALGR(DV_4)    // ~  #define DV_EURO ALGR(DV_5)    // €  #define DV_NOT  ALGR(DV_6)    // ¬ -// Row 2  #define DV_LBRC ALGR(DV_GRV)  // [  #define DV_RBRC ALGR(DV_PLUS) // ] -// Row 3  #define DV_LCBR ALGR(DV_ACUT) // {  #define DV_RCBR ALGR(DV_CCED) // } + diff --git a/quantum/keymap_extras/keymap_swedish.h b/quantum/keymap_extras/keymap_swedish.h index cadb66d3bd..4cdf4879c3 100644 --- a/quantum/keymap_extras/keymap_swedish.h +++ b/quantum/keymap_extras/keymap_swedish.h @@ -1,39 +1,33 @@ -/* Copyright 2017 Andreas Lindhé - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ ' │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define SE_SECT KC_GRV  // §  #define SE_1    KC_1    // 1  #define SE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SE_0    KC_0    // 0  #define SE_PLUS KC_MINS // +  #define SE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SE_Q    KC_Q    // Q  #define SE_W    KC_W    // W  #define SE_E    KC_E    // E @@ -60,7 +53,6 @@  #define SE_P    KC_P    // P  #define SE_ARNG KC_LBRC // Å  #define SE_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define SE_A    KC_A    // A  #define SE_S    KC_S    // S  #define SE_D    KC_D    // D @@ -73,7 +65,6 @@  #define SE_ODIA KC_SCLN // Ö  #define SE_ADIA KC_QUOT // Ä  #define SE_QUOT KC_NUHS // ' -// Row 4  #define SE_LABK KC_NUBS // <  #define SE_Z    KC_Z    // Z  #define SE_X    KC_X    // X @@ -85,21 +76,6 @@  #define SE_COMM KC_COMM // ,  #define SE_DOT  KC_DOT  // .  #define SE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ½ │ ! │ " │ # │ ¤ │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SE_HALF S(SE_SECT) // ½  #define SE_EXLM S(SE_1)    // !  #define SE_DQUO S(SE_2)    // " @@ -113,30 +89,12 @@  #define SE_EQL  S(SE_0)    // =  #define SE_QUES S(SE_PLUS) // ?  #define SE_GRV  S(SE_ACUT) // ` (dead) -// Row 2  #define SE_CIRC S(SE_DIAE) // ^ (dead) -// Row 3  #define SE_ASTR S(SE_QUOT) // * -// Row 4  #define SE_RABK S(SE_LABK) // >  #define SE_SCLN S(SE_COMM) // ;  #define SE_COLN S(SE_DOT)  // :  #define SE_UNDS S(SE_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ @ │ £ │ $ │ € │   │ { │ [ │ ] │ } │ \ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │ µ │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define SE_AT   ALGR(SE_2)    // @  #define SE_PND  ALGR(SE_3)    // £  #define SE_DLR  ALGR(SE_4)    // $ @@ -146,11 +104,7 @@  #define SE_RBRC ALGR(SE_9)    // ]  #define SE_RCBR ALGR(SE_0)    // }  #define SE_BSLS ALGR(SE_PLUS) // (backslash) -// Row 2  #define SE_TILD ALGR(SE_DIAE) // ~ (dead) -// Row 4  #define SE_PIPE ALGR(SE_LABK) // |  #define SE_MICR ALGR(SE_M)    // µ -// DEPRECATED -#include "keymap_nordic.h" diff --git a/quantum/keymap_extras/keymap_swedish_mac_ansi.h b/quantum/keymap_extras/keymap_swedish_mac_ansi.h index 0d0426f866..9649f59dd0 100644 --- a/quantum/keymap_extras/keymap_swedish_mac_ansi.h +++ b/quantum/keymap_extras/keymap_swedish_mac_ansi.h @@ -1,39 +1,33 @@ -/* Copyright 2021 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ < │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │ ' │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define SE_LABK KC_GRV  // <  #define SE_1    KC_1    // 1  #define SE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SE_0    KC_0    // 0  #define SE_PLUS KC_MINS // +  #define SE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SE_Q    KC_Q    // Q  #define SE_W    KC_W    // W  #define SE_E    KC_E    // E @@ -61,7 +54,6 @@  #define SE_ARNG KC_LBRC // Å  #define SE_DIAE KC_RBRC // ¨ (dead)  #define SE_QUOT KC_NUHS // ' -// Row 3  #define SE_A    KC_A    // A  #define SE_S    KC_S    // S  #define SE_D    KC_D    // D @@ -73,7 +65,6 @@  #define SE_L    KC_L    // L  #define SE_ODIA KC_SCLN // Ö  #define SE_ADIA KC_QUOT // Ä -// Row 4  #define SE_Z    KC_Z    // Z  #define SE_X    KC_X    // X  #define SE_C    KC_C    // C @@ -84,21 +75,6 @@  #define SE_COMM KC_COMM // ,  #define SE_DOT  KC_DOT  // .  #define SE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ > │ ! │ " │ # │ € │ % │ & │ / │ ( │ ) │ = │ ? │ ` │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │ * │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define SE_RABK S(SE_LABK) // >  #define SE_EXLM S(SE_1)    // !  #define SE_DQUO S(SE_2)    // " @@ -112,29 +88,11 @@  #define SE_EQL  S(SE_0)    // =  #define SE_QUES S(SE_PLUS) // ?  #define SE_GRV  S(SE_ACUT) // ` -// Row 2  #define SE_CIRC S(SE_DIAE) // ^ (dead)  #define SE_ASTR S(SE_QUOT) // * -// Row 4  #define SE_SCLN S(SE_COMM) // ;  #define SE_COLN S(SE_DOT)  // :  #define SE_UNDS S(SE_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≤ │ © │ ™ │ £ │ $ │ ∞ │ § │ | │ [ │ ] │ ≈ │ ± │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ • │ Ω │ É │ ® │ † │ µ │ Ü │ ı │ Œ │ π │ ˙ │ ~ │ @ │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │  │ ß │ ∂ │ ƒ │ ¸ │ ˛ │ √ │ ª │ fi │ Ø │ Æ │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ ÷ │   │ Ç │ ‹ │ › │ ‘ │ ’ │ ‚ │ … │ – │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - *  - */ -// Row 1   #define SE_LTEQ A(SE_LABK) // ≤  #define SE_COPY A(SE_1)    // ©  #define SE_TM   A(SE_2)    // ™ @@ -147,7 +105,6 @@  #define SE_RBRC A(SE_9)    // ]  #define SE_AEQL A(SE_0)    // ≈  #define SE_PLMN A(SE_PLUS) // ± -// Row 2  #define SE_BULT A(SE_Q)    // •  #define SE_OMEG A(SE_W)    // Ω  #define SE_EACU A(SE_E)    // É @@ -161,7 +118,6 @@  #define SE_DOTA A(SE_ARNG) // ˙  #define SE_TILD A(SE_DIAE) // ~ (dead)  #define SE_AT   A(SE_QUOT) // @ -// Row 3  #define SE_APPL A(SE_A)    //  (Apple logo)  #define SE_SS   A(SE_S)    // ß  #define SE_PDIF A(SE_D)    // ∂ @@ -173,7 +129,6 @@  #define SE_FI   A(SE_L)    // fi  #define SE_OSTR A(SE_ODIA) // Ø  #define SE_AE   A(SE_ADIA) // Æ -// Row 4  #define SE_DIV  A(SE_Z)    // ÷  #define SE_CCED A(SE_C)    // Ç  #define SE_LSAQ A(SE_V)    // ‹ @@ -183,22 +138,6 @@  #define SE_SLQU A(SE_COMM) // ‚  #define SE_ELLP A(SE_DOT)  // …  #define SE_NDSH A(SE_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≥ │ ¡ │   │ ¥ │ ¢ │ ‰ │ ¶ │ \ │ { │ } │ ≠ │ ¿ │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ ° │ ˝ │   │   │ ‡ │ ˜ │   │ ˆ │   │ ∏ │ ˚ │   │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ ◊ │ ∑ │ ∆ │ ∫ │ ¯ │ ˘ │ ¬ │ º │ fl │   │   │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ ⁄ │ ˇ │   │ « │ » │ “ │ ” │ „ │ · │ — │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - *  - */ -// Row 1  #define SE_GTEQ S(A(SE_LABK)) // ≥  #define SE_IEXL S(A(SE_1))    // ¡  #define SE_YEN  S(A(SE_3))    // ¥ @@ -210,7 +149,6 @@  #define SE_RCBR S(A(SE_9))    // }  #define SE_NEQL S(A(SE_0))    // ≠  #define SE_IQUE S(A(SE_PLUS)) // ¿ -// Row 2  #define SE_DEG  S(A(SE_Q))    // °  #define SE_DACU S(A(SE_W))    // ˝  #define SE_DDAG S(A(SE_T))    // ‡ @@ -218,7 +156,6 @@  #define SE_DCIR S(A(SE_I))    // ˆ  #define SE_NARP S(A(SE_P))    // ∏  #define SE_RNGA S(A(SE_ARNG)) // ˚ -// Row 3  #define SE_LOZN S(A(SE_A))    // ◊  #define SE_NARS S(A(SE_S))    // ∑  #define SE_INCR S(A(SE_D))    // ∆ @@ -228,7 +165,6 @@  #define SE_NOT  S(A(SE_J))    // ¬  #define SE_MORD S(A(SE_K))    // º  #define SE_FL   S(A(SE_L))    // fl -// Row 4  #define SE_FRSL S(A(SE_Z))    // ⁄  #define SE_CARN S(A(SE_X))    // ˇ  #define SE_LDAQ S(A(SE_V))    // « @@ -238,3 +174,4 @@  #define SE_DLQU S(A(SE_COMM)) // „  #define SE_MDDT S(A(SE_DOT))  // ·  #define SE_MDSH S(A(SE_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_swedish_mac_iso.h b/quantum/keymap_extras/keymap_swedish_mac_iso.h index ab155530ae..068c81b020 100644 --- a/quantum/keymap_extras/keymap_swedish_mac_iso.h +++ b/quantum/keymap_extras/keymap_swedish_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2021 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ ' │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define SE_SECT KC_GRV  // §  #define SE_1    KC_1    // 1  #define SE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SE_0    KC_0    // 0  #define SE_PLUS KC_MINS // +  #define SE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SE_Q    KC_Q    // Q  #define SE_W    KC_W    // W  #define SE_E    KC_E    // E @@ -60,7 +53,6 @@  #define SE_P    KC_P    // P  #define SE_ARNG KC_LBRC // Å  #define SE_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define SE_A    KC_A    // A  #define SE_S    KC_S    // S  #define SE_D    KC_D    // D @@ -73,7 +65,6 @@  #define SE_ODIA KC_SCLN // Ö  #define SE_ADIA KC_QUOT // Ä  #define SE_QUOT KC_NUHS // ' -// Row 4  #define SE_LABK KC_NUBS // <  #define SE_Z    KC_Z    // Z  #define SE_X    KC_X    // X @@ -85,22 +76,7 @@  #define SE_COMM KC_COMM // ,  #define SE_DOT  KC_DOT  // .  #define SE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ° │ ! │ " │ # │ € │ % │ & │ / │ ( │ ) │ = │ ? │ ` │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 -#define SE_DEG S(SE_SECT)  // ° +#define SE_DEG  S(SE_SECT) // °  #define SE_EXLM S(SE_1)    // !  #define SE_DQUO S(SE_2)    // "  #define SE_HASH S(SE_3)    // # @@ -113,30 +89,12 @@  #define SE_EQL  S(SE_0)    // =  #define SE_QUES S(SE_PLUS) // ?  #define SE_GRV  S(SE_ACUT) // ` -// Row 2  #define SE_CIRC S(SE_DIAE) // ^ (dead) -// Row 3  #define SE_ASTR S(SE_QUOT) // * -// Row 4  #define SE_RABK S(SE_LABK) // >  #define SE_SCLN S(SE_COMM) // ;  #define SE_COLN S(SE_DOT)  // :  #define SE_UNDS S(SE_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ¶ │ © │ ™ │ £ │ $ │ ∞ │   │ | │ [ │ ] │ ≈ │ ± │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ • │ Ω │ É │ ® │ † │ µ │ Ü │ ı │ Œ │ π │ ˙ │ ~ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │  │ ß │ ∂ │ ƒ │ ¸ │ ˛ │ √ │ ª │ fi │ Ø │ Æ │ @ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ ÷ │   │ Ç │ ‹ │ › │ ‘ │ ’ │ ‚ │ … │ – │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1   #define SE_PILC A(SE_SECT) // ¶  #define SE_COPY A(SE_1)    // ©  #define SE_TM   A(SE_2)    // ™ @@ -148,7 +106,6 @@  #define SE_RBRC A(SE_9)    // ]  #define SE_AEQL A(SE_0)    // ≈  #define SE_PLMN A(SE_PLUS) // ± -// Row 2  #define SE_BULT A(SE_Q)    // •  #define SE_OMEG A(SE_W)    // Ω  #define SE_EACU A(SE_E)    // É @@ -161,7 +118,6 @@  #define SE_PI   A(SE_P)    // π  #define SE_DOTA A(SE_ARNG) // ˙  #define SE_TILD A(SE_DIAE) // ~ (dead) -// Row 3  #define SE_APPL A(SE_A)    //  (Apple logo)  #define SE_SS   A(SE_S)    // ß  #define SE_PDIF A(SE_D)    // ∂ @@ -174,7 +130,6 @@  #define SE_OSTR A(SE_ODIA) // Ø  #define SE_AE   A(SE_ADIA) // Æ  #define SE_AT   A(SE_QUOT) // @ -// Row 4  #define SE_LTEQ A(SE_LABK) // ≤  #define SE_DIV  A(SE_Z)    // ÷  #define SE_CCED A(SE_C)    // Ç @@ -185,21 +140,6 @@  #define SE_SLQU A(SE_COMM) // ‚  #define SE_ELLP A(SE_DOT)  // …  #define SE_NDSH A(SE_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │   │ ¡ │ ” │ ¥ │ ¢ │ ‰ │   │ \ │ { │ } │ ≠ │ ¿ │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │ ˝ │   │   │ ‡ │ ˜ │   │ ˆ │   │ ∏ │ ˚ │   │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ ◊ │ ∑ │ ∆ │ ∫ │ ¯ │ ˘ │ ¬ │ º │ fl │   │   │   │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │ ⁄ │ ˇ │   │ « │ » │ “ │ ” │ „ │ · │ — │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define SE_IEXL S(A(SE_1))    // ¡  #define SE_YEN  S(A(SE_3))    // ¥  #define SE_CENT S(A(SE_4))    // ¢ @@ -209,14 +149,12 @@  #define SE_RCBR S(A(SE_9))    // }  #define SE_NEQL S(A(SE_0))    // ≠  #define SE_IQUE S(A(SE_PLUS)) // ¿ -// Row 2  #define SE_DACU S(A(SE_W))    // ˝  #define SE_DDAG S(A(SE_T))    // ‡  #define SE_STIL S(A(SE_Y))    // ˜  #define SE_DCIR S(A(SE_I))    // ˆ  #define SE_NARP S(A(SE_P))    // ∏  #define SE_RNGA S(A(SE_ARNG)) // ˚ -// Row 3  #define SE_LOZN S(A(SE_A))    // ◊  #define SE_NARS S(A(SE_S))    // ∑  #define SE_INCR S(A(SE_D))    // ∆ @@ -226,7 +164,6 @@  #define SE_NOT  S(A(SE_J))    // ¬  #define SE_MORD S(A(SE_K))    // º  #define SE_FL   S(A(SE_L))    // fl -// Row 4  #define SE_GTEQ S(A(SE_LABK)) // ≥  #define SE_FRSL S(A(SE_Z))    // ⁄  #define SE_CARN S(A(SE_X))    // ˇ @@ -237,3 +174,4 @@  #define SE_DLQU S(A(SE_COMM)) // „  #define SE_MDDT S(A(SE_DOT))  // ·  #define SE_MDSH S(A(SE_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h b/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h index 9b44517625..c0692ababd 100644 --- a/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h +++ b/quantum/keymap_extras/keymap_swedish_pro_mac_ansi.h @@ -1,39 +1,33 @@ -/* Copyright 2021 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ < │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │ ' │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define SE_LABK KC_GRV  // <  #define SE_1    KC_1    // 1  #define SE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SE_0    KC_0    // 0  #define SE_PLUS KC_MINS // +  #define SE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SE_Q    KC_Q    // Q  #define SE_W    KC_W    // W  #define SE_E    KC_E    // E @@ -61,7 +54,6 @@  #define SE_ARNG KC_LBRC // Å  #define SE_DIAE KC_RBRC // ¨ (dead)  #define SE_QUOT KC_NUHS // ' -// Row 3  #define SE_A    KC_A    // A  #define SE_S    KC_S    // S  #define SE_D    KC_D    // D @@ -73,7 +65,6 @@  #define SE_L    KC_L    // L  #define SE_ODIA KC_SCLN // Ö  #define SE_ADIA KC_QUOT // Ä -// Row 4  #define SE_Z    KC_Z    // Z  #define SE_X    KC_X    // X  #define SE_C    KC_C    // C @@ -84,21 +75,6 @@  #define SE_COMM KC_COMM // ,  #define SE_DOT  KC_DOT  // .  #define SE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ > │ ! │ " │ # │ € │ % │ & │ / │ ( │ ) │ = │ ? │ ` │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │ * │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define SE_RABK S(SE_LABK) // >  #define SE_EXLM S(SE_1)    // !  #define SE_DQUO S(SE_2)    // " @@ -112,29 +88,11 @@  #define SE_EQL  S(SE_0)    // =  #define SE_QUES S(SE_PLUS) // ?  #define SE_GRV  S(SE_ACUT) // ` -// Row 2  #define SE_CIRC S(SE_DIAE) // ^ (dead)  #define SE_ASTR S(SE_QUOT) // * -// Row 4  #define SE_SCLN S(SE_COMM) // ;  #define SE_COLN S(SE_DOT)  // :  #define SE_UNDS S(SE_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≤ │ © │ @ │ £ │ $ │ ∞ │ § │ | │ [ │ ] │ ≈ │ ± │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ • │ Ω │ É │ ® │ † │ µ │ Ü │ ı │ Œ │ π │ ˙ │ ~ │ ™ │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │  │ ß │ ∂ │ ƒ │ ¸ │ ˛ │ √ │ ª │ fi │ Ø │ Æ │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ ÷ │   │ Ç │ ‹ │ › │ ‘ │ ’ │ ‚ │ … │ – │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - *  - */ -// Row 1   #define SE_LTEQ A(SE_LABK) // ≤  #define SE_COPY A(SE_1)    // ©  #define SE_AT   A(SE_2)    // @ @@ -147,7 +105,6 @@  #define SE_RBRC A(SE_9)    // ]  #define SE_AEQL A(SE_0)    // ≈  #define SE_PLMN A(SE_PLUS) // ± -// Row 2  #define SE_BULT A(SE_Q)    // •  #define SE_OMEG A(SE_W)    // Ω  #define SE_EACU A(SE_E)    // É @@ -161,7 +118,6 @@  #define SE_DOTA A(SE_ARNG) // ˙  #define SE_TILD A(SE_DIAE) // ~ (dead)  #define SE_TM   A(SE_QUOT) // ™ -// Row 3  #define SE_APPL A(SE_A)    //  (Apple logo)  #define SE_SS   A(SE_S)    // ß  #define SE_PDIF A(SE_D)    // ∂ @@ -173,7 +129,6 @@  #define SE_FI   A(SE_L)    // fi  #define SE_OSTR A(SE_ODIA) // Ø  #define SE_AE   A(SE_ADIA) // Æ -// Row 4  #define SE_DIV  A(SE_Z)    // ÷  #define SE_CCED A(SE_C)    // Ç  #define SE_LSAQ A(SE_V)    // ‹ @@ -183,22 +138,6 @@  #define SE_SLQU A(SE_COMM) // ‚  #define SE_ELLP A(SE_DOT)  // …  #define SE_NDSH A(SE_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ≥ │ ¡ │   │ ¥ │ ¢ │ ‰ │ ¶ │ \ │ { │ } │ ≠ │ ¿ │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ ° │ ˝ │   │   │ ‡ │ ˜ │   │ ˆ │   │ ∏ │ ˚ │   │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴───┤ - * │      │ ◊ │ ∑ │ ∆ │ ∫ │ ¯ │ ˘ │ ¬ │ º │ fl │   │   │      │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴──────┤ - * │        │ ⁄ │ ˇ │   │ « │ » │ “ │ ” │ „ │ · │ — │        │ - * ├─────┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - *  - */ -// Row 1  #define SE_GTEQ S(A(SE_LABK)) // ≥  #define SE_IEXL S(A(SE_1))    // ¡  #define SE_YEN  S(A(SE_3))    // ¥ @@ -210,7 +149,6 @@  #define SE_RCBR S(A(SE_9))    // }  #define SE_NEQL S(A(SE_0))    // ≠  #define SE_IQUE S(A(SE_PLUS)) // ¿ -// Row 2  #define SE_DEG  S(A(SE_Q))    // °  #define SE_DACU S(A(SE_W))    // ˝  #define SE_DDAG S(A(SE_T))    // ‡ @@ -218,7 +156,6 @@  #define SE_DCIR S(A(SE_I))    // ˆ  #define SE_NARP S(A(SE_P))    // ∏  #define SE_RNGA S(A(SE_ARNG)) // ˚ -// Row 3  #define SE_LOZN S(A(SE_A))    // ◊  #define SE_NARS S(A(SE_S))    // ∑  #define SE_INCR S(A(SE_D))    // ∆ @@ -228,7 +165,6 @@  #define SE_NOT  S(A(SE_J))    // ¬  #define SE_MORD S(A(SE_K))    // º  #define SE_FL   S(A(SE_L))    // fl -// Row 4  #define SE_FRSL S(A(SE_Z))    // ⁄  #define SE_CARN S(A(SE_X))    // ˇ  #define SE_LDAQ S(A(SE_V))    // « @@ -238,3 +174,4 @@  #define SE_DLQU S(A(SE_COMM)) // „  #define SE_MDDT S(A(SE_DOT))  // ·  #define SE_MDSH S(A(SE_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h b/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h index f2d6605865..e01f0a7dc3 100644 --- a/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h +++ b/quantum/keymap_extras/keymap_swedish_pro_mac_iso.h @@ -1,39 +1,33 @@ -/* Copyright 2021 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ + │ ´ │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Å │ ¨ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ö │ Ä │ ' │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ - │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 +// Aliases  #define SE_SECT KC_GRV  // §  #define SE_1    KC_1    // 1  #define SE_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define SE_0    KC_0    // 0  #define SE_PLUS KC_MINS // +  #define SE_ACUT KC_EQL  // ´ (dead) -// Row 2  #define SE_Q    KC_Q    // Q  #define SE_W    KC_W    // W  #define SE_E    KC_E    // E @@ -60,7 +53,6 @@  #define SE_P    KC_P    // P  #define SE_ARNG KC_LBRC // Å  #define SE_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define SE_A    KC_A    // A  #define SE_S    KC_S    // S  #define SE_D    KC_D    // D @@ -73,7 +65,6 @@  #define SE_ODIA KC_SCLN // Ö  #define SE_ADIA KC_QUOT // Ä  #define SE_QUOT KC_NUHS // ' -// Row 4  #define SE_LABK KC_NUBS // <  #define SE_Z    KC_Z    // Z  #define SE_X    KC_X    // X @@ -85,22 +76,7 @@  #define SE_COMM KC_COMM // ,  #define SE_DOT  KC_DOT  // .  #define SE_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ° │ ! │ " │ # │ € │ % │ & │ / │ ( │ ) │ = │ ? │ ` │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │ ^ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ * │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1 -#define SE_DEG S(SE_SECT)  // ° +#define SE_DEG  S(SE_SECT) // °  #define SE_EXLM S(SE_1)    // !  #define SE_DQUO S(SE_2)    // "  #define SE_HASH S(SE_3)    // # @@ -113,30 +89,12 @@  #define SE_EQL  S(SE_0)    // =  #define SE_QUES S(SE_PLUS) // ?  #define SE_GRV  S(SE_ACUT) // ` -// Row 2  #define SE_CIRC S(SE_DIAE) // ^ (dead) -// Row 3  #define SE_ASTR S(SE_QUOT) // * -// Row 4  #define SE_RABK S(SE_LABK) // >  #define SE_SCLN S(SE_COMM) // ;  #define SE_COLN S(SE_DOT)  // :  #define SE_UNDS S(SE_MINS) // _ - -/* Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │ ¶ │ © │ @ │ £ │ $ │ ∞ │   │ | │ [ │ ] │ ≈ │ ± │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │ • │ Ω │ É │ ® │ † │ µ │ Ü │ ı │ Œ │ π │ ˙ │ ~ │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │  │ ß │ ∂ │ ƒ │ ¸ │ ˛ │ √ │ ª │ fi │ Ø │ Æ │ ™ │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≤ │ ÷ │   │ Ç │ ‹ │ › │ ‘ │ ’ │ ‚ │ … │ – │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1   #define SE_PILC A(SE_SECT) // ¶  #define SE_COPY A(SE_1)    // ©  #define SE_AT   A(SE_2)    // @ @@ -148,7 +106,6 @@  #define SE_RBRC A(SE_9)    // ]  #define SE_AEQL A(SE_0)    // ≈  #define SE_PLMN A(SE_PLUS) // ± -// Row 2  #define SE_BULT A(SE_Q)    // •  #define SE_OMEG A(SE_W)    // Ω  #define SE_EACU A(SE_E)    // É @@ -161,7 +118,6 @@  #define SE_PI   A(SE_P)    // π  #define SE_DOTA A(SE_ARNG) // ˙  #define SE_TILD A(SE_DIAE) // ~ (dead) -// Row 3  #define SE_APPL A(SE_A)    //  (Apple logo)  #define SE_SS   A(SE_S)    // ß  #define SE_PDIF A(SE_D)    // ∂ @@ -174,7 +130,6 @@  #define SE_OSTR A(SE_ODIA) // Ø  #define SE_AE   A(SE_ADIA) // Æ  #define SE_TM   A(SE_QUOT) // ™ -// Row 4  #define SE_LTEQ A(SE_LABK) // ≤  #define SE_DIV  A(SE_Z)    // ÷  #define SE_CCED A(SE_C)    // Ç @@ -185,21 +140,6 @@  #define SE_SLQU A(SE_COMM) // ‚  #define SE_ELLP A(SE_DOT)  // …  #define SE_NDSH A(SE_MINS) // – - -/* Shift+Alted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬─────┐ - * │   │ ¡ │ ” │ ¥ │ ¢ │ ‰ │   │ \ │ { │ } │ ≠ │ ¿ │   │     │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ - * │     │   │ ˝ │   │   │ ‡ │ ˜ │   │ ˆ │   │ ∏ │ ˚ │   │   │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐  │ - * │      │ ◊ │ ∑ │ ∆ │ ∫ │ ¯ │ ˘ │ ¬ │ º │ fl │   │   │   │  │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴──┤ - * │    │ ≥ │ ⁄ │ ˇ │   │ « │ » │ “ │ ” │ „ │ · │ — │        │ - * ├────┴┬──┴─┬─┴───┼───┴───┴───┴───┴───┴───┼───┴─┬─┴──┬─────┤ - * │     │    │     │                       │     │    │     │ - * └─────┴────┴─────┴───────────────────────┴─────┴────┴─────┘ - */ -// Row 1  #define SE_IEXL S(A(SE_1))    // ¡  #define SE_YEN  S(A(SE_3))    // ¥  #define SE_CENT S(A(SE_4))    // ¢ @@ -209,14 +149,12 @@  #define SE_RCBR S(A(SE_9))    // }  #define SE_NEQL S(A(SE_0))    // ≠  #define SE_IQUE S(A(SE_PLUS)) // ¿ -// Row 2  #define SE_DACU S(A(SE_W))    // ˝  #define SE_DDAG S(A(SE_T))    // ‡  #define SE_STIL S(A(SE_Y))    // ˜  #define SE_DCIR S(A(SE_I))    // ˆ  #define SE_NARP S(A(SE_P))    // ∏  #define SE_RNGA S(A(SE_ARNG)) // ˚ -// Row 3  #define SE_LOZN S(A(SE_A))    // ◊  #define SE_NARS S(A(SE_S))    // ∑  #define SE_INCR S(A(SE_D))    // ∆ @@ -226,7 +164,6 @@  #define SE_NOT  S(A(SE_J))    // ¬  #define SE_MORD S(A(SE_K))    // º  #define SE_FL   S(A(SE_L))    // fl -// Row 4  #define SE_GTEQ S(A(SE_LABK)) // ≥  #define SE_FRSL S(A(SE_Z))    // ⁄  #define SE_CARN S(A(SE_X))    // ˇ @@ -237,3 +174,4 @@  #define SE_DLQU S(A(SE_COMM)) // „  #define SE_MDDT S(A(SE_DOT))  // ·  #define SE_MDSH S(A(SE_MINS)) // — + diff --git a/quantum/keymap_extras/keymap_swiss_de.h b/quantum/keymap_extras/keymap_swiss_de.h index 6723836870..0a6e6e4918 100644 --- a/quantum/keymap_extras/keymap_swiss_de.h +++ b/quantum/keymap_extras/keymap_swiss_de.h @@ -1,44 +1,33 @@ -/* Copyright 2016 heartsekai - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -#ifdef CH_H -// The ChibiOS ch.h file defines this... -#    undef CH_H -#endif - -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ^ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ ü │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ö │ ä │ $ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define CH_SECT KC_GRV  // §  #define CH_1    KC_1    // 1  #define CH_2    KC_2    // 2 @@ -52,7 +41,6 @@  #define CH_0    KC_0    // 0  #define CH_QUOT KC_MINS // '  #define CH_CIRC KC_EQL  // ^ (dead) -// Row 2  #define CH_Q    KC_Q    // Q  #define CH_W    KC_W    // W  #define CH_E    KC_E    // E @@ -65,7 +53,6 @@  #define CH_P    KC_P    // P  #define CH_UDIA KC_LBRC // ü  #define CH_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define CH_A    KC_A    // A  #define CH_S    KC_S    // S  #define CH_D    KC_D    // D @@ -78,7 +65,6 @@  #define CH_ODIA KC_SCLN // ö  #define CH_ADIA KC_QUOT // ä  #define CH_DLR  KC_NUHS // $ -// Row 4  #define CH_LABK KC_NUBS // <  #define CH_Y    KC_Z    // Y  #define CH_X    KC_X    // X @@ -90,21 +76,6 @@  #define CH_COMM KC_COMM // ,  #define CH_DOT  KC_DOT  // .  #define CH_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ + │ " │ * │ ç │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ è │ ! │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ é │ à │ £ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CH_DEG  S(CH_SECT) // °  #define CH_PLUS S(CH_1)    // +  #define CH_DQUO S(CH_2)    // " @@ -118,33 +89,15 @@  #define CH_EQL  S(CH_0)    // =  #define CH_QUES S(CH_QUOT) // ?  #define CH_GRV  S(CH_CIRC) // ` (dead) -// Row 2  #define CH_EGRV S(CH_UDIA) // è  #define CH_EXLM S(CH_DIAE) // ! -// Row 3  #define CH_EACU S(CH_ODIA) // é  #define CH_AGRV S(CH_ADIA) // à  #define CH_PND  S(CH_DLR)  // £ -// Row 4  #define CH_RABK S(CH_LABK) // >  #define CH_SCLN S(CH_COMM) // ;  #define CH_COLN S(CH_DOT)  // :  #define CH_UNDS S(CH_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¦ │ @ │ # │   │   │ ¬ │ | │ ¢ │   │   │ ´ │ ~ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ { │ } │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CH_BRKP ALGR(CH_1)    // ¦  #define CH_AT   ALGR(CH_2)    // @  #define CH_HASH ALGR(CH_3)    // # @@ -153,12 +106,10 @@  #define CH_CENT ALGR(CH_8)    // ¢  #define CH_ACUT ALGR(CH_QUOT) // ´ (dead)  #define CH_TILD ALGR(CH_CIRC) // ~ (dead) -// Row 2  #define CH_EURO ALGR(CH_E)    // €  #define CH_LBRC ALGR(CH_UDIA) // [  #define CH_RBRC ALGR(CH_DIAE) // ] -// Row 3  #define CH_LCBR ALGR(CH_ADIA) // {  #define CH_RCBR ALGR(CH_DLR)  // } -// Row 4  #define CH_BSLS ALGR(CH_LABK) // (backslash) + diff --git a/quantum/keymap_extras/keymap_swiss_fr.h b/quantum/keymap_extras/keymap_swiss_fr.h index b1f2455a68..05a4a4c279 100644 --- a/quantum/keymap_extras/keymap_swiss_fr.h +++ b/quantum/keymap_extras/keymap_swiss_fr.h @@ -1,44 +1,33 @@ -/* Copyright 2016 Vincent Pochet - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -#ifdef CH_H -// The ChibiOS ch.h file defines this... -#    undef CH_H -#endif - -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ § │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ ' │ ^ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Z │ U │ I │ O │ P │ è │ ¨ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ é │ à │ $ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Y │ X │ C │ V │ B │ N │ M │ , │ . │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define CH_SECT KC_GRV  // §  #define CH_1    KC_1    // 1  #define CH_2    KC_2    // 2 @@ -52,7 +41,6 @@  #define CH_0    KC_0    // 0  #define CH_QUOT KC_MINS // '  #define CH_CIRC KC_EQL  // ^ (dead) -// Row 2  #define CH_Q    KC_Q    // Q  #define CH_W    KC_W    // W  #define CH_E    KC_E    // E @@ -65,7 +53,6 @@  #define CH_P    KC_P    // P  #define CH_EGRV KC_LBRC // è  #define CH_DIAE KC_RBRC // ¨ (dead) -// Row 3  #define CH_A    KC_A    // A  #define CH_S    KC_S    // S  #define CH_D    KC_D    // D @@ -78,7 +65,6 @@  #define CH_EACU KC_SCLN // é  #define CH_AGRV KC_QUOT // à  #define CH_DLR  KC_NUHS // $ -// Row 4  #define CH_LABK KC_NUBS // <  #define CH_Y    KC_Z    // Y  #define CH_X    KC_X    // X @@ -90,21 +76,6 @@  #define CH_COMM KC_COMM // ,  #define CH_DOT  KC_DOT  // .  #define CH_MINS KC_SLSH // - - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ° │ + │ " │ * │ ç │ % │ & │ / │ ( │ ) │ = │ ? │ ` │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ ü │ ! │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ ö │ ä │ £ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │ ; │ : │ _ │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CH_DEG  S(CH_SECT) // °  #define CH_PLUS S(CH_1)    // +  #define CH_DQUO S(CH_2)    // " @@ -118,33 +89,15 @@  #define CH_EQL  S(CH_0)    // =  #define CH_QUES S(CH_QUOT) // ?  #define CH_GRV  S(CH_CIRC) // ` (dead) -// Row 2  #define CH_UDIA S(CH_EGRV) // ü  #define CH_EXLM S(CH_DIAE) // ! -// Row 3  #define CH_ODIA S(CH_EACU) // ö  #define CH_ADIA S(CH_AGRV) // ä  #define CH_PND  S(CH_DLR)  // £ -// Row 4  #define CH_RABK S(CH_LABK) // >  #define CH_SCLN S(CH_COMM) // ;  #define CH_COLN S(CH_DOT)  // :  #define CH_UNDS S(CH_MINS) // _ - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¦ │ @ │ # │   │   │ ¬ │ | │ ¢ │   │   │ ´ │ ~ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ € │   │   │   │   │   │   │   │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │ { │ } │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define CH_BRKP ALGR(CH_1)    // ¦  #define CH_AT   ALGR(CH_2)    // @  #define CH_HASH ALGR(CH_3)    // # @@ -153,12 +106,10 @@  #define CH_CENT ALGR(CH_8)    // ¢  #define CH_ACUT ALGR(CH_QUOT) // ´ (dead)  #define CH_TILD ALGR(CH_CIRC) // ~ (dead) -// Row 2  #define CH_EURO ALGR(CH_E)    // €  #define CH_LBRC ALGR(CH_EGRV) // [  #define CH_RBRC ALGR(CH_DIAE) // ] -// Row 3  #define CH_LCBR ALGR(CH_AGRV) // {  #define CH_RCBR ALGR(CH_DLR)  // } -// Row 4  #define CH_BSLS ALGR(CH_LABK) // (backslash) + diff --git a/quantum/keymap_extras/keymap_turkish_f.h b/quantum/keymap_extras/keymap_turkish_f.h index aaee2aa480..0dfc0236e8 100644 --- a/quantum/keymap_extras/keymap_turkish_f.h +++ b/quantum/keymap_extras/keymap_turkish_f.h @@ -1,39 +1,33 @@ -/* Copyright 2019 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ + │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ / │ - │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ F │ G │ Ğ │ I │ O │ D │ R │ N │ H │ P │ Q │ W │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ U │ İ │ E │ A │ Ü │ T │ K │ M │ L │ Y │ Ş │ X │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ J │ Ö │ V │ C │ Ç │ Z │ S │ B │ . │ , │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define TR_PLUS KC_GRV  // +  #define TR_1    KC_1    // 1  #define TR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define TR_0    KC_0    // 0  #define TR_SLSH KC_MINS // /  #define TR_MINS KC_EQL  // - -// Row 2  #define TR_F    KC_Q    // F  #define TR_G    KC_W    // G  #define TR_GBRV KC_E    // Ğ @@ -60,7 +53,6 @@  #define TR_P    KC_P    // P  #define TR_Q    KC_LBRC // Q  #define TR_W    KC_RBRC // W -// Row 3  #define TR_U    KC_A    // U  #define TR_IDOT KC_S    // İ  #define TR_E    KC_D    // E @@ -73,7 +65,6 @@  #define TR_Y    KC_SCLN // Y  #define TR_SCED KC_QUOT // Ş  #define TR_X    KC_NUHS // X -// Row 4  #define TR_LABK KC_NUBS // <  #define TR_J    KC_Z    // J  #define TR_ODIA KC_X    // Ö @@ -85,21 +76,6 @@  #define TR_B    KC_COMM // B  #define TR_DOT  KC_DOT  // .  #define TR_COMM KC_SLSH // , - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ * │ ! │ " │ ^ │ $ │ % │ & │ ' │ ( │ ) │ = │ ? │ _ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │   │ : │ ; │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define TR_ASTR S(TR_PLUS) // *  #define TR_EXLM S(TR_1)    // !  #define TR_DQUO S(TR_2)    // " @@ -113,25 +89,9 @@  #define TR_EQL  S(TR_0)    // =  #define TR_QUES S(TR_SLSH) // ?  #define TR_UNDS S(TR_MINS) // _ -// Row 4  #define TR_RABK S(TR_LABK) // >  #define TR_COLN S(TR_DOT)  // :  #define TR_SCLN S(TR_COMM) // ; - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¬ │ ¹ │ ² │ # │ ¼ │ ½ │ ¾ │ { │ [ │ ] │ } │ \ │ | │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ @ │   │   │ ¶ │   │ ¥ │   │   │ Ø │ £ │ ¨ │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Æ │ ß │ € │   │   │ ₺ │   │   │   │ ´ │   │ ` │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │ « │ » │ ¢ │   │   │   │ µ │ × │ ÷ │ - │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define TR_NOT  ALGR(TR_PLUS) // ¬  #define TR_SUP1 ALGR(TR_1)    // ¹  #define TR_SUP2 ALGR(TR_2)    // ² @@ -145,7 +105,6 @@  #define TR_RCBR ALGR(TR_0)    // }  #define TR_BSLS ALGR(TR_SLSH) // (backslash)  #define TR_PIPE ALGR(TR_MINS) // | -// Row 2  #define TR_AT   ALGR(TR_F)    // @  #define TR_PILC ALGR(TR_I)    // ¶  #define TR_YEN  ALGR(TR_D)    // ¥ @@ -153,14 +112,12 @@  #define TR_PND  ALGR(TR_P)    // £  #define TR_DIAE ALGR(TR_Q)    // ¨ (dead)  #define TR_TILD ALGR(TR_W)    // ~ (dead) -// Row 3  #define TR_AE   ALGR(TR_U)    // Æ  #define TR_SS   ALGR(TR_IDOT) // ß  #define TR_EURO ALGR(TR_E)    // €  #define TR_LIRA ALGR(TR_T)    // ₺  #define TR_ACUT ALGR(TR_Y)    // ´ (dead)  #define TR_GRV  ALGR(TR_X)    // ` (dead) -// Row 4  #define TR_LDAQ ALGR(TR_J)    // «  #define TR_RDAQ ALGR(TR_ODIA) // »  #define TR_CENT ALGR(TR_V)    // ¢ @@ -168,30 +125,13 @@  #define TR_MUL  ALGR(TR_B)    // ×  #define TR_DIV  ALGR(TR_DOT)  // ÷  #define TR_SHYP ALGR(TR_COMM) //  (soft hyphen) - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │ ³ │ ¤ │   │   │   │   │   │   │ ¿ │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │ ® │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │ § │   │ ª │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ ¦ │   │   │ © │   │   │   │ º │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define TR_SUP3 S(ALGR(TR_3))    // ³  #define TR_CURR S(ALGR(TR_4))    // ¤  #define TR_IQUE S(ALGR(TR_SLSH)) // ¿ -// Row 2  #define TR_REGD S(ALGR(TR_I))    // ® -// Row 3  #define TR_SECT S(ALGR(TR_IDOT)) // §  #define TR_FORD S(ALGR(TR_A))    // ª -// Row 4  #define TR_BRKP S(ALGR(TR_LABK)) // ¦  #define TR_COPY S(ALGR(TR_V))    // ©  #define TR_MORD S(ALGR(TR_S))    // º + diff --git a/quantum/keymap_extras/keymap_turkish_q.h b/quantum/keymap_extras/keymap_turkish_q.h index 120e2b8d92..cc64300b18 100644 --- a/quantum/keymap_extras/keymap_turkish_q.h +++ b/quantum/keymap_extras/keymap_turkish_q.h @@ -1,39 +1,33 @@ -/* Copyright 2019 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ " │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ * │ - │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ Ğ │ Ü │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ Ş │ İ │ , │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ < │ Z │ X │ C │ V │ B │ N │ M │ Ö │ Ç │ . │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define TR_DQUO KC_GRV  // "  #define TR_1    KC_1    // 1  #define TR_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define TR_0    KC_0    // 0  #define TR_ASTR KC_MINS // *  #define TR_MINS KC_EQL  // - -// Row 2  #define TR_Q    KC_Q    // Q  #define TR_W    KC_W    // W  #define TR_E    KC_E    // E @@ -60,7 +53,6 @@  #define TR_P    KC_P    // P  #define TR_GBRV KC_LBRC // Ğ  #define TR_UDIA KC_RBRC // Ü -// Row 3  #define TR_A    KC_A    // A  #define TR_S    KC_S    // S  #define TR_D    KC_D    // D @@ -73,7 +65,6 @@  #define TR_SCED KC_SCLN // Ş  #define TR_IDOT KC_QUOT // İ  #define TR_COMM KC_NUHS // , -// Row 4  #define TR_LABK KC_NUBS // <  #define TR_Z    KC_Z    // Z  #define TR_X    KC_X    // X @@ -85,21 +76,6 @@  #define TR_ODIA KC_COMM // Ö  #define TR_CCED KC_DOT  // Ç  #define TR_DOT  KC_SLSH // . - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ é │ ! │ ' │ ^ │ + │ % │ & │ / │ ( │ ) │ = │ ? │ _ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │   │   │ ; │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ > │   │   │   │   │   │   │   │   │   │ : │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define TR_EACU S(TR_DQUO) // é  #define TR_EXLM S(TR_1)    // !  #define TR_QUOT S(TR_2)    // ' @@ -113,26 +89,9 @@  #define TR_EQL  S(TR_0)    // =  #define TR_QUES S(TR_ASTR) // ?  #define TR_UNDS S(TR_MINS) // _ -// Row 3  #define TR_SCLN S(TR_COMM) // ; -// Row 4  #define TR_RABK S(TR_LABK) // >  #define TR_COLN S(TR_DOT)  // : - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │ £ │ # │ $ │ ½ │   │ { │ [ │ ] │ } │ \ │ | │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ @ │   │ € │   │ ₺ │   │   │   │   │   │ ¨ │ ~ │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Æ │ ß │   │   │   │   │   │   │   │ ´ │   │ ` │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define TR_PND  ALGR(TR_2)    // £  #define TR_HASH ALGR(TR_3)    // #  #define TR_DLR  ALGR(TR_4)    // $ @@ -143,14 +102,13 @@  #define TR_RCBR ALGR(TR_0)    // }  #define TR_BSLS ALGR(TR_ASTR) // (backslash)  #define TR_PIPE ALGR(TR_MINS) // | -// Row 2  #define TR_AT   ALGR(TR_Q)    // @  #define TR_EURO ALGR(TR_E)    // €  #define TR_LIRA ALGR(TR_T)    // ₺  #define TR_DIAE ALGR(TR_GBRV) // ¨ (dead)  #define TR_TILD ALGR(TR_UDIA) // ~ (dead) -// Row 3  #define TR_AE   ALGR(TR_A)    // Æ  #define TR_SS   ALGR(TR_S)    // ß  #define TR_ACUT ALGR(TR_SCED) // ´ (dead)  #define TR_GRV  ALGR(TR_COMM) // ` (dead) + diff --git a/quantum/keymap_extras/keymap_uk.h b/quantum/keymap_extras/keymap_uk.h index 03fe8149f0..ff6f8c9c2e 100644 --- a/quantum/keymap_extras/keymap_uk.h +++ b/quantum/keymap_extras/keymap_uk.h @@ -1,39 +1,33 @@ -/* Copyright 2015-2016 Jack Humbert - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ # │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define UK_GRV  KC_GRV  // `  #define UK_1    KC_1    // 1  #define UK_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define UK_0    KC_0    // 0  #define UK_MINS KC_MINS // -  #define UK_EQL  KC_EQL  // = -// Row 2  #define UK_Q    KC_Q    // Q  #define UK_W    KC_W    // W  #define UK_E    KC_E    // E @@ -60,7 +53,6 @@  #define UK_P    KC_P    // P  #define UK_LBRC KC_LBRC // [  #define UK_RBRC KC_RBRC // ] -// Row 3  #define UK_A    KC_A    // A  #define UK_S    KC_S    // S  #define UK_D    KC_D    // D @@ -73,7 +65,6 @@  #define UK_SCLN KC_SCLN // ;  #define UK_QUOT KC_QUOT // '  #define UK_HASH KC_NUHS // # -// Row 4  #define UK_BSLS KC_NUBS // (backslash)  #define UK_Z    KC_Z    // Z  #define UK_X    KC_X    // X @@ -85,21 +76,6 @@  #define UK_COMM KC_COMM // ,  #define UK_DOT  KC_DOT  // .  #define UK_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¬ │ ! │ " │ £ │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │   │   │   │   │   │   │   │   │   │ : │ @ │ ~ │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │ | │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define UK_NOT  S(UK_GRV)  // ¬  #define UK_EXLM S(UK_1)    // !  #define UK_DQUO S(UK_2)    // " @@ -113,39 +89,20 @@  #define UK_RPRN S(UK_0)    // )  #define UK_UNDS S(UK_MINS) // _  #define UK_PLUS S(UK_EQL)  // + -// Row 2  #define UK_LCBR S(UK_LBRC) // {  #define UK_RCBR S(UK_RBRC) // } -// Row 3  #define UK_COLN S(UK_SCLN) // :  #define UK_AT   S(UK_QUOT) // @  #define UK_TILD S(UK_HASH) // ~ -// Row 4  #define UK_PIPE S(UK_BSLS) // |  #define UK_LABK S(UK_COMM) // <  #define UK_RABK S(UK_DOT)  // >  #define UK_QUES S(UK_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ¦ │   │   │   │ € │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │ É │   │   │   │ Ú │ Í │ Ó │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ - * │      │ Á │   │   │   │   │   │   │   │   │   │   │   │    │ - * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ - * │    │   │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define UK_BRKP ALGR(UK_GRV)  // ¦  #define UK_EURO ALGR(UK_4)    // € -// Row 2  #define UK_EACU ALGR(KC_E)    // É  #define UK_UACU ALGR(KC_U)    // Ú  #define UK_IACU ALGR(KC_I)    // Í  #define UK_OACU ALGR(KC_O)    // Ó -// Row 3  #define UK_AACU ALGR(KC_A)    // Á + diff --git a/quantum/keymap_extras/keymap_ukrainian.h b/quantum/keymap_extras/keymap_ukrainian.h index e5cd80f3d2..b954bb2398 100644 --- a/quantum/keymap_extras/keymap_ukrainian.h +++ b/quantum/keymap_extras/keymap_ukrainian.h @@ -1,39 +1,33 @@ -/* Copyright 2022 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ' │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Й │ Ц │ У │ К │ Е │ Н │ Г │ Ш │ Щ │ З │ Х │ Ї │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Ф │ І │ В │ А │ П │ Р │ О │ Л │ Д │ Ж │ Є │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Я │ Ч │ С │ М │ И │ Т │ Ь │ Б │ Ю │ . │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define UA_QUOT KC_GRV  // '  #define UA_1    KC_1    // 1  #define UA_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define UA_0    KC_0    // 0  #define UA_MINS KC_MINS // -  #define UA_EQL  KC_EQL  // = -// Row 2  #define UA_YOT  KC_Q    // Й  #define UA_TSE  KC_W    // Ц  #define UA_U    KC_E    // У @@ -61,7 +54,6 @@  #define UA_KHA  KC_LBRC // Х  #define UA_YI   KC_RBRC // Ї  #define UA_BSLS KC_BSLS // (backslash) -// Row 3  #define UA_EF   KC_A    // Ф  #define UA_I    KC_S    // І  #define UA_VE   KC_D    // В @@ -73,7 +65,6 @@  #define UA_DE   KC_L    // Д  #define UA_ZHE  KC_SCLN // Ж  #define UA_YE   KC_QUOT // Є -// Row 4  #define UA_YA   KC_Z    // Я  #define UA_CHE  KC_X    // Ч  #define UA_ES   KC_C    // С @@ -84,21 +75,6 @@  #define UA_BE   KC_COMM // Б  #define UA_YU   KC_DOT  // Ю  #define UA_DOT  KC_SLSH // . - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ₴ │ ! │ " │ № │ ; │ % │ : │ ? │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │  /  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │ , │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define UA_HRYV S(UA_QUOT) // ₴  #define UA_EXLM S(UA_1)    // !  #define UA_DQUO S(UA_2)    // " @@ -112,23 +88,7 @@  #define UA_RPRN S(UA_0)    // )  #define UA_UNDS S(UA_MINS) // _  #define UA_PLUS S(UA_EQL)  // + -// Row 2  #define UA_SLSH S(UA_BSLS) // / -// Row 4  #define UA_COMM S(UA_DOT)  // , +#define UA_GE   ALGR(UA_HE)   // ґ -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │ ґ │   │   │   │   │   │     │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │   │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 2 -#define UA_GE   ALGR(UA_HE) // ґ diff --git a/quantum/keymap_extras/keymap_us.h b/quantum/keymap_extras/keymap_us.h index b18c701679..38df8c6336 100644 --- a/quantum/keymap_extras/keymap_us.h +++ b/quantum/keymap_extras/keymap_us.h @@ -1,52 +1,55 @@ -// Copyright 2022 QMK +// Copyright 2023 QMK  // SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define KC_TILD S(KC_GRAVE) // ~ -#define KC_EXLM S(KC_1)     // ! -#define KC_AT   S(KC_2)     // @ -#define KC_HASH S(KC_3)     // # -#define KC_DLR  S(KC_4)     // $ -#define KC_PERC S(KC_5)     // % -#define KC_CIRC S(KC_6)     // ^ -#define KC_AMPR S(KC_7)     // & -#define KC_ASTR S(KC_8)     // * -#define KC_LPRN S(KC_9)     // ( -#define KC_RPRN S(KC_0)     // ) +#define KC_EXLM S(KC_1)    // ! +#define KC_AT   S(KC_2)    // @ +#define KC_HASH S(KC_3)    // # +#define KC_DLR  S(KC_4)    // $ +#define KC_PERC S(KC_5)    // % +#define KC_CIRC S(KC_6)    // ^ +#define KC_AMPR S(KC_7)    // & +#define KC_ASTR S(KC_8)    // * +#define KC_LPRN S(KC_9)    // ( +#define KC_RPRN S(KC_0)    // )  #define KC_UNDS S(KC_MINUS) // _  #define KC_PLUS S(KC_EQUAL) // + -// Row 2 -#define KC_LCBR S(KC_LEFT_BRACKET)  // { +#define KC_LCBR S(KC_LEFT_BRACKET) // {  #define KC_RCBR S(KC_RIGHT_BRACKET) // } -#define KC_PIPE S(KC_BACKSLASH)     // | -// Row 3 +#define KC_PIPE S(KC_BACKSLASH) // |  #define KC_COLN S(KC_SEMICOLON) // : -#define KC_DQUO S(KC_QUOTE)     // " -// Row 4 +#define KC_DQUO S(KC_QUOTE) // "  #define KC_LABK S(KC_COMMA) // < -#define KC_RABK S(KC_DOT)   // > +#define KC_RABK S(KC_DOT)  // >  #define KC_QUES S(KC_SLASH) // ? -// alias stuff  #define KC_TILDE KC_TILD  #define KC_EXCLAIM KC_EXLM  #define KC_DOLLAR KC_DLR @@ -57,14 +60,11 @@  #define KC_LEFT_PAREN KC_LPRN  #define KC_RIGHT_PAREN KC_RPRN  #define KC_UNDERSCORE KC_UNDS -  #define KC_LEFT_CURLY_BRACE KC_LCBR  #define KC_RIGHT_CURLY_BRACE KC_RCBR -  #define KC_COLON KC_COLN  #define KC_DOUBLE_QUOTE KC_DQUO  #define KC_DQT KC_DQUO -  #define KC_LEFT_ANGLE_BRACKET KC_LABK  #define KC_LT KC_LABK  #define KC_RIGHT_ANGLE_BRACKET KC_RABK diff --git a/quantum/keymap_extras/keymap_us_extended.h b/quantum/keymap_extras/keymap_us_extended.h index 8e71a8de25..c4f627c30d 100644 --- a/quantum/keymap_extras/keymap_us_extended.h +++ b/quantum/keymap_extras/keymap_us_extended.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define US_GRV  KC_GRV  // `  #define US_1    KC_1    // 1  #define US_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define US_0    KC_0    // 0  #define US_MINS KC_MINS // -  #define US_EQL  KC_EQL  // = -// Row 2  #define US_Q    KC_Q    // Q  #define US_W    KC_W    // W  #define US_E    KC_E    // E @@ -61,7 +54,6 @@  #define US_LBRC KC_LBRC // [  #define US_RBRC KC_RBRC // ]  #define US_BSLS KC_BSLS // (backslash) -// Row 3  #define US_A    KC_A    // A  #define US_S    KC_S    // S  #define US_D    KC_D    // D @@ -73,7 +65,6 @@  #define US_L    KC_L    // L  #define US_SCLN KC_SCLN // ;  #define US_QUOT KC_QUOT // ' -// Row 4  #define US_Z    KC_Z    // Z  #define US_X    KC_X    // X  #define US_C    KC_C    // C @@ -84,21 +75,6 @@  #define US_COMM KC_COMM // ,  #define US_DOT  KC_DOT  // .  #define US_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_TILD S(US_GRV)  // ~  #define US_EXLM S(US_1)    // !  #define US_AT   S(US_2)    // @ @@ -112,32 +88,14 @@  #define US_RPRN S(US_0)    // )  #define US_UNDS S(US_MINS) // _  #define US_PLUS S(US_EQL)  // + -// Row 2  #define US_LCBR S(US_LBRC) // {  #define US_RCBR S(US_RBRC) // }  #define US_PIPE S(US_BSLS) // | -// Row 3  #define US_COLN S(US_SCLN) // :  #define US_DQUO S(US_QUOT) // " -// Row 4  #define US_LABK S(US_COMM) // <  #define US_RABK S(US_DOT)  // >  #define US_QUES S(US_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ ¹ │ ² │ ³ │ ¤ │ € │ ^ │ ̛  │ ¾ │ ‘ │ ’ │ ¥ │ × │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Ä │ Å │ É │ ® │ Þ │ Ü │ Ú │ Í │ Ó │ Ö │ « │ » │  ¬  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Á │ ß │ Ð │   │   │   │ Ï │ Œ │ Ø │ ¶ │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Æ │   │ © │   │   │ Ñ │ µ │ Ç │ ˙ │ ¿ │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_DGRV ALGR(US_GRV)  // ` (dead)  #define US_SUP1 ALGR(US_1)    // ¹  #define US_SUP2 ALGR(US_2)    // ² @@ -145,13 +103,12 @@  #define US_CURR ALGR(US_4)    // ¤  #define US_EURO ALGR(US_5)    // €  #define US_DCIR ALGR(US_6)    // ^ (dead) -#define US_HORN ALGR(US_7)    // ̛  (dead) +#define US_HORN ALGR(US_7)    // ̛ (dead)  #define US_OGON ALGR(US_8)    // ˛ (dead)  #define US_LSQU ALGR(US_9)    // ‘  #define US_RSQU ALGR(US_0)    // ’  #define US_YEN  ALGR(US_MINS) // ¥  #define US_MUL  ALGR(US_EQL)  // × -// Row 2  #define US_ADIA ALGR(US_Q)    // Ä  #define US_ARNG ALGR(US_W)    // Å  #define US_EACU ALGR(US_E)    // É @@ -165,7 +122,6 @@  #define US_LDAQ ALGR(US_LBRC) // «  #define US_RDAQ ALGR(US_RBRC) // »  #define US_NOT  ALGR(US_BSLS) // ¬ -// Row 3  #define US_AACU ALGR(US_A)    // Á  #define US_SS   ALGR(US_S)    // ß  #define US_ETH  ALGR(US_D)    // Ð @@ -174,7 +130,6 @@  #define US_OSTR ALGR(US_L)    // Ø  #define US_PILC ALGR(US_SCLN) // ¶  #define US_ACUT ALGR(US_QUOT) // ´ (dead) -// Row 4  #define US_AE   ALGR(US_Z)    // Æ  #define US_OE_2 ALGR(US_X)    // Œ  #define US_COPY ALGR(US_C)    // © @@ -184,21 +139,6 @@  #define US_CCED ALGR(US_COMM) // Ç  #define US_DOTA ALGR(US_DOT)  // ˙ (dead)  #define US_IQUE ALGR(US_SLSH) // ¿ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ¡ │ ˝ │ ¯ │ £ │ ¸ │ ¼ │ ½ │ ¾ │ ˘ │ ° │  ̣ │ ÷ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ “ │ ” │  ¦  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │ § │   │   │   │   │   │   │   │ ° │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │ ¢ │   │   │   │   │   │ ˇ │  ̉ │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_DTIL S(ALGR(US_GRV))  // ~ (dead)  #define US_IEXL S(ALGR(US_1))    // ¡  #define US_DACU S(ALGR(US_2))    // ˝ (dead) @@ -210,18 +150,15 @@  #define US_TQTR S(ALGR(US_8))    // ¾  #define US_BREV S(ALGR(US_9))    // ˘ (dead)  #define US_RNGA S(ALGR(US_0))    // ° (dead) -#define US_DOTB S(ALGR(US_MINS)) // ̣  (dead) +#define US_DOTB S(ALGR(US_MINS)) // ̣ (dead)  #define US_DIV  S(ALGR(US_EQL))  // ÷ -// Row 2  #define US_LDQU S(ALGR(US_LBRC)) // “  #define US_RDQU S(ALGR(US_RBRC)) // ”  #define US_BRKP S(ALGR(US_BSLS)) // ¦ -// Row 3  #define US_SECT S(ALGR(US_S))    // §  #define US_DEG  S(ALGR(US_SCLN)) // °  #define US_DIAE S(ALGR(US_QUOT)) // ¨ (dead) -// Row 4  #define US_CENT S(ALGR(US_C))    // ¢  #define US_CARN S(ALGR(US_DOT))  // ˇ (dead) -#define US_HOKA S(ALGR(US_SLSH)) //  ̉ (dead) +#define US_HOKA S(ALGR(US_SLSH)) // ̉ (dead) diff --git a/quantum/keymap_extras/keymap_us_international.h b/quantum/keymap_extras/keymap_us_international.h index d491a38f52..1f2bc33476 100644 --- a/quantum/keymap_extras/keymap_us_international.h +++ b/quantum/keymap_extras/keymap_us_international.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ´ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define US_DGRV KC_GRV  // ` (dead)  #define US_1    KC_1    // 1  #define US_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define US_0    KC_0    // 0  #define US_MINS KC_MINS // -  #define US_EQL  KC_EQL  // = -// Row 2  #define US_Q    KC_Q    // Q  #define US_W    KC_W    // W  #define US_E    KC_E    // E @@ -61,7 +54,6 @@  #define US_LBRC KC_LBRC // [  #define US_RBRC KC_RBRC // ]  #define US_BSLS KC_BSLS // (backslash) -// Row 3  #define US_A    KC_A    // A  #define US_S    KC_S    // S  #define US_D    KC_D    // D @@ -73,7 +65,6 @@  #define US_L    KC_L    // L  #define US_SCLN KC_SCLN // ;  #define US_ACUT KC_QUOT // ´ (dead) -// Row 4  #define US_Z    KC_Z    // Z  #define US_X    KC_X    // X  #define US_C    KC_C    // C @@ -84,21 +75,6 @@  #define US_COMM KC_COMM // ,  #define US_DOT  KC_DOT  // .  #define US_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ ¨ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_DTIL S(US_DGRV) // ~ (dead)  #define US_EXLM S(US_1)    // !  #define US_AT   S(US_2)    // @ @@ -112,32 +88,14 @@  #define US_RPRN S(US_0)    // )  #define US_UNDS S(US_MINS) // _  #define US_PLUS S(US_EQL)  // + -// Row 2  #define US_LCBR S(US_LBRC) // {  #define US_RCBR S(US_RBRC) // }  #define US_PIPE S(US_BSLS) // | -// Row 3  #define US_COLN S(US_SCLN) // :  #define US_DIAE S(US_ACUT) // ¨ (dead) -// Row 4  #define US_LABK S(US_COMM) // <  #define US_RABK S(US_DOT)  // >  #define US_QUES S(US_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¡ │ ² │ ³ │ ¤ │ € │ ¼ │ ½ │ ¾ │ ‘ │ ’ │ ¥ │ × │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Ä │ Å │ É │ ® │ Þ │ Ü │ Ú │ Í │ Ó │ Ö │ « │ » │  ¬  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Á │ ß │ Ð │   │   │   │   │   │ Ø │ ¶ │ ´ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Æ │   │ © │   │   │ Ñ │ µ │ Ç │   │ ¿ │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_IEXL ALGR(US_1)    // ¡  #define US_SUP2 ALGR(US_2)    // ²  #define US_SUP3 ALGR(US_3)    // ³ @@ -150,7 +108,6 @@  #define US_RSQU ALGR(US_0)    // ’  #define US_YEN  ALGR(US_MINS) // ¥  #define US_MUL  ALGR(US_EQL)  // × -// Row 2  #define US_ADIA ALGR(US_Q)    // Ä  #define US_ARNG ALGR(US_W)    // Å  #define US_EACU ALGR(US_E)    // É @@ -164,43 +121,24 @@  #define US_LDAQ ALGR(US_LBRC) // «  #define US_RDAQ ALGR(US_RBRC) // »  #define US_NOT  ALGR(US_BSLS) // ¬ -// Row 3  #define US_AACU ALGR(US_A)    // Á  #define US_SS   ALGR(US_S)    // ß  #define US_ETH  ALGR(US_D)    // Ð  #define US_OSTR ALGR(US_L)    // Ø  #define US_PILC ALGR(US_SCLN) // ¶  #define US_NDAC ALGR(US_ACUT) // ´ -// Row 4  #define US_AE   ALGR(US_Z)    // Æ  #define US_COPY ALGR(US_C)    // ©  #define US_NTIL ALGR(US_N)    // Ñ  #define US_MICR ALGR(US_M)    // µ  #define US_CCED ALGR(US_COMM) // Ç  #define US_IQUE ALGR(US_SLSH) // ¿ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │   │ ¹ │   │   │ £ │   │   │   │   │   │   │   │ ÷ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │   │   │  ¦  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │ § │   │   │   │   │   │   │   │ ° │ ¨ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │ ¢ │   │   │   │   │   │   │   │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_SUP1 S(ALGR(US_1))    // ¹  #define US_PND  S(ALGR(US_4))    // £  #define US_DIV  S(ALGR(US_EQL))  // ÷ -// Row 2  #define US_BRKP S(ALGR(US_BSLS)) // ¦ -// Row 3  #define US_SECT S(ALGR(US_S))    // §  #define US_DEG  S(ALGR(US_SCLN)) // °  #define US_NDDR S(ALGR(US_ACUT)) // ¨ -// Row 4  #define US_CENT S(ALGR(US_C))    // ¢ + diff --git a/quantum/keymap_extras/keymap_us_international_linux.h b/quantum/keymap_extras/keymap_us_international_linux.h index e0c08200b9..16d072cc5b 100644 --- a/quantum/keymap_extras/keymap_us_international_linux.h +++ b/quantum/keymap_extras/keymap_us_international_linux.h @@ -1,39 +1,33 @@ -/* Copyright 2020 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ´ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define US_DGRV KC_GRV  // ` (dead)  #define US_1    KC_1    // 1  #define US_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define US_0    KC_0    // 0  #define US_MINS KC_MINS // -  #define US_EQL  KC_EQL  // = -// Row 2  #define US_Q    KC_Q    // Q  #define US_W    KC_W    // W  #define US_E    KC_E    // E @@ -61,7 +54,6 @@  #define US_LBRC KC_LBRC // [  #define US_RBRC KC_RBRC // ]  #define US_BSLS KC_BSLS // (backslash) -// Row 3  #define US_A    KC_A    // A  #define US_S    KC_S    // S  #define US_D    KC_D    // D @@ -73,7 +65,6 @@  #define US_L    KC_L    // L  #define US_SCLN KC_SCLN // ;  #define US_ACUT KC_QUOT // ´ (dead) -// Row 4  #define US_Z    KC_Z    // Z  #define US_X    KC_X    // X  #define US_C    KC_C    // C @@ -84,21 +75,6 @@  #define US_COMM KC_COMM // ,  #define US_DOT  KC_DOT  // .  #define US_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │ : │ ¨ │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_DTIL S(US_DGRV) // ~ (dead)  #define US_EXLM S(US_1)    // !  #define US_AT   S(US_2)    // @ @@ -112,33 +88,14 @@  #define US_RPRN S(US_0)    // )  #define US_UNDS S(US_MINS) // _  #define US_PLUS S(US_EQL)  // + -// Row 2  #define US_LCBR S(US_LBRC) // {  #define US_RCBR S(US_RBRC) // }  #define US_PIPE S(US_BSLS) // | -// Row 3  #define US_COLN S(US_SCLN) // :  #define US_DIAE S(US_ACUT) // ¨ (dead) -// Row 4  #define US_LABK S(US_COMM) // <  #define US_RABK S(US_DOT)  // >  #define US_QUES S(US_SLSH) // ? - -/* AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ ¡ │ ² │ ³ │ ¤ │ € │ ¼ │ ½ │ ¾ │ ‘ │ ’ │ ¥ │ × │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Ä │ Å │ É │ ® │ Þ │ Ü │ Ú │ Í │ Ó │ Ö │ « │ » │  ¬  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ Á │ ß │ Ð │   │   │   │   │ Œ │ Ø │ ¶ │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Æ │   │ © │   │   │ Ñ │ µ │ Ç │ ˙ │ ¿ │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ - -// Row 1  #define US_GRV  ALGR(US_DGRV) // `  #define US_IEXL ALGR(US_1)    // ¡  #define US_SUP2 ALGR(US_2)    // ² @@ -152,7 +109,6 @@  #define US_RSQU ALGR(US_0)    // ’  #define US_YEN  ALGR(US_MINS) // ¥  #define US_MUL  ALGR(US_EQL)  // × -// Row 2  #define US_ADIA ALGR(US_Q)    // Ä  #define US_ARNG ALGR(US_W)    // Å  #define US_EACU ALGR(US_E)    // É @@ -166,7 +122,6 @@  #define US_LDAQ ALGR(US_LBRC) // «  #define US_RDAQ ALGR(US_RBRC) // »  #define US_NOT  ALGR(US_BSLS) // ¬ -// Row 3  #define US_AACU ALGR(US_A)    // Á  #define US_SS   ALGR(US_S)    // ß  #define US_ETH  ALGR(US_D)    // Ð @@ -174,7 +129,6 @@  #define US_OSTR ALGR(US_L)    // Ø  #define US_PILC ALGR(US_SCLN) // ¶  #define US_QUOT ALGR(US_ACUT) // ' -// Row 4  #define US_AE   ALGR(US_Z)    // Æ  #define US_COPY ALGR(US_C)    // ©  #define US_NTIL ALGR(US_N)    // Ñ @@ -182,21 +136,6 @@  #define US_CCED ALGR(US_COMM) // Ç  #define US_DOTA ALGR(US_DOT)  // ˙ (dead)  #define US_IQUE ALGR(US_SLSH) // ¿ - -/* Shift+AltGr symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ¹ │ ˝ │ ¯ │ £ │ ¸ │ ^ │ ̛  │ ˛ │ ˘ │ ° │ ̣  │ ÷ │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │   │ “ │ ” │  ¦  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │ § │   │   │   │   │   │   │   │ ° │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │ ¢ │   │   │   │   │   │ ˇ │ ̉  │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define US_TILD S(ALGR(US_DGRV)) // ~  #define US_SUP1 S(ALGR(US_1))    // ¹  #define US_DACU S(ALGR(US_2))    // ˝ (dead) @@ -204,21 +143,19 @@  #define US_PND  S(ALGR(US_4))    // £  #define US_CEDL S(ALGR(US_5))    // ¸ (dead)  #define US_CIRC S(ALGR(US_6))    // ^ -#define US_HORN S(ALGR(US_7))    // ̛  (dead) +#define US_HORN S(ALGR(US_7))    // ̛ (dead)  #define US_OGON S(ALGR(US_8))    // ˛ (dead)  #define US_BREV S(ALGR(US_9))    // ˘ (dead)  #define US_RNGA S(ALGR(US_0))    // ° (dead) -#define US_DOTB S(ALGR(US_MINS)) // ̣  (dead) +#define US_DOTB S(ALGR(US_MINS)) // ̣ (dead)  #define US_DIV  S(ALGR(US_EQL))  // ÷ -// Row 2  #define US_LDQU S(ALGR(US_LBRC)) // “  #define US_RDQU S(ALGR(US_RBRC)) // ”  #define US_BRKP S(ALGR(US_BSLS)) // ¦ -// Row 3  #define US_SECT S(ALGR(US_S))    // §  #define US_DEG  S(ALGR(US_SCLN)) // °  #define US_DQUO S(ALGR(US_ACUT)) // " -// Row 4  #define US_CENT S(ALGR(US_C))    // ¢  #define US_CARN S(ALGR(US_DOT))  // ˇ (dead) -#define US_HOKA S(ALGR(US_SLSH)) // ̉  (dead) +#define US_HOKA S(ALGR(US_SLSH)) // ̉ (dead) + diff --git a/quantum/keymap_extras/keymap_workman.h b/quantum/keymap_extras/keymap_workman.h index 6367d68351..5fe9d36b16 100644 --- a/quantum/keymap_extras/keymap_workman.h +++ b/quantum/keymap_extras/keymap_workman.h @@ -1,39 +1,33 @@ -/* Copyright 2018 Jacob Jerrell - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ D │ R │ W │ B │ J │ F │ U │ P │ ; │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ H │ T │ G │ Y │ N │ E │ O │ I │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ M │ C │ V │ K │ L │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define WK_GRV  KC_GRV  // `  #define WK_1    KC_1    // 1  #define WK_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define WK_0    KC_0    // 0  #define WK_MINS KC_MINS // -  #define WK_EQL  KC_EQL  // = -// Row 2  #define WK_Q    KC_Q    // Q  #define WK_D    KC_W    // D  #define WK_R    KC_E    // R @@ -61,7 +54,6 @@  #define WK_LBRC KC_LBRC // [  #define WK_RBRC KC_RBRC // ]  #define WK_BSLS KC_BSLS // (backslash) -// Row 3  #define WK_A    KC_A    // A  #define WK_S    KC_S    // S  #define WK_H    KC_D    // H @@ -73,7 +65,6 @@  #define WK_O    KC_L    // O  #define WK_I    KC_SCLN // I  #define WK_QUOT KC_QUOT // ' -// Row 4  #define WK_Z    KC_Z    // Z  #define WK_X    KC_X    // X  #define WK_M    KC_C    // M @@ -84,21 +75,6 @@  #define WK_COMM KC_COMM // ,  #define WK_DOT  KC_DOT  // .  #define WK_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │ : │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define WK_TILD S(WK_GRV)  // ~  #define WK_EXLM S(WK_1)    // !  #define WK_AT   S(WK_2)    // @ @@ -112,14 +88,12 @@  #define WK_RPRN S(WK_0)    // )  #define WK_UNDS S(WK_MINS) // _  #define WK_PLUS S(WK_EQL)  // + -// Row 2  #define WK_COLN S(WK_SCLN) // :  #define WK_LCBR S(WK_LBRC) // {  #define WK_RCBR S(WK_RBRC) // }  #define WK_PIPE S(WK_BSLS) // | -// Row 3  #define WK_DQUO S(WK_QUOT) // " -// Row 4  #define WK_LABK S(WK_COMM) // <  #define WK_RABK S(WK_DOT)  // >  #define WK_QUES S(WK_SLSH) // ? + diff --git a/quantum/keymap_extras/keymap_workman_zxcvm.h b/quantum/keymap_extras/keymap_workman_zxcvm.h index 01eb83c397..757f98e912 100644 --- a/quantum/keymap_extras/keymap_workman_zxcvm.h +++ b/quantum/keymap_extras/keymap_workman_zxcvm.h @@ -1,39 +1,33 @@ -/* Copyright 2018 Jacob Jerrell - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +/******************************************************************************* +  88888888888 888      d8b                .d888 d8b 888               d8b +      888     888      Y8P               d88P"  Y8P 888               Y8P +      888     888                        888        888 +      888     88888b.  888 .d8888b       888888 888 888  .d88b.       888 .d8888b +      888     888 "88b 888 88K           888    888 888 d8P  Y8b      888 88K +      888     888  888 888 "Y8888b.      888    888 888 88888888      888 "Y8888b. +      888     888  888 888      X88      888    888 888 Y8b.          888      X88 +      888     888  888 888  88888P'      888    888 888  "Y8888       888  88888P' +                                                        888                 888 +                                                        888                 888 +                                                        888                 888 +     .d88b.   .d88b.  88888b.   .d88b.  888d888 8888b.  888888 .d88b.   .d88888 +    d88P"88b d8P  Y8b 888 "88b d8P  Y8b 888P"      "88b 888   d8P  Y8b d88" 888 +    888  888 88888888 888  888 88888888 888    .d888888 888   88888888 888  888 +    Y88b 888 Y8b.     888  888 Y8b.     888    888  888 Y88b. Y8b.     Y88b 888 +     "Y88888  "Y8888  888  888  "Y8888  888    "Y888888  "Y888 "Y8888   "Y88888 +         888 +    Y8b d88P +     "Y88P" +*******************************************************************************/ +#pragma once  #include "keymap.h" -  // clang-format off -/* - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │ Q │ D │ R │ W │ B │ J │ F │ U │ P │ ; │ [ │ ] │  \  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │ A │ S │ H │ T │ G │ Y │ N │ E │ O │ I │ ' │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │ Z │ X │ C │ V │ M │ K │ L │ , │ . │ / │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1 +// Aliases  #define WK_GRV  KC_GRV  // `  #define WK_1    KC_1    // 1  #define WK_2    KC_2    // 2 @@ -47,7 +41,6 @@  #define WK_0    KC_0    // 0  #define WK_MINS KC_MINS // -  #define WK_EQL  KC_EQL  // = -// Row 2  #define WK_Q    KC_Q    // Q  #define WK_D    KC_W    // D  #define WK_R    KC_E    // R @@ -61,7 +54,6 @@  #define WK_LBRC KC_LBRC // [  #define WK_RBRC KC_RBRC // ]  #define WK_BSLS KC_BSLS // (backslash) -// Row 3  #define WK_A    KC_A    // A  #define WK_S    KC_S    // S  #define WK_H    KC_D    // H @@ -73,7 +65,6 @@  #define WK_O    KC_L    // O  #define WK_I    KC_SCLN // I  #define WK_QUOT KC_QUOT // ' -// Row 4  #define WK_Z    KC_Z    // Z  #define WK_X    KC_X    // X  #define WK_C    KC_C    // C @@ -84,21 +75,6 @@  #define WK_COMM KC_COMM // ,  #define WK_DOT  KC_DOT  // .  #define WK_SLSH KC_SLSH // / - -/* Shifted symbols - * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ - * │ ~ │ ! │ @ │ # │ $ │ % │ ^ │ & │ * │ ( │ ) │ _ │ + │       │ - * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ - * │     │   │   │   │   │   │   │   │   │   │ : │ { │ } │  |  │ - * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ - * │      │   │   │   │   │   │   │   │   │   │   │ " │        │ - * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ - * │        │   │   │   │   │   │   │   │ < │ > │ ? │          │ - * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ - * │    │    │    │                        │    │    │    │    │ - * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ - */ -// Row 1  #define WK_TILD S(WK_GRV)  // ~  #define WK_EXLM S(WK_1)    // !  #define WK_AT   S(WK_2)    // @ @@ -112,14 +88,12 @@  #define WK_RPRN S(WK_0)    // )  #define WK_UNDS S(WK_MINS) // _  #define WK_PLUS S(WK_EQL)  // + -// Row 2  #define WK_COLN S(WK_SCLN) // :  #define WK_LCBR S(WK_LBRC) // {  #define WK_RCBR S(WK_RBRC) // }  #define WK_PIPE S(WK_BSLS) // | -// Row 3  #define WK_DQUO S(WK_QUOT) // " -// Row 4  #define WK_LABK S(WK_COMM) // <  #define WK_RABK S(WK_DOT)  // >  #define WK_QUES S(WK_SLSH) // ? + diff --git a/quantum/keymap_introspection.c b/quantum/keymap_introspection.c index 93aab82fcc..1529ab9fe2 100644 --- a/quantum/keymap_introspection.c +++ b/quantum/keymap_introspection.c @@ -17,7 +17,11 @@ uint8_t keymap_layer_count(void) {      return NUM_KEYMAP_LAYERS;  } +#ifdef DYNAMIC_KEYMAP_ENABLE +_Static_assert(NUM_KEYMAP_LAYERS <= MAX_LAYER, "Number of keymap layers exceeds maximum set by DYNAMIC_KEYMAP_LAYER_COUNT"); +#else  _Static_assert(NUM_KEYMAP_LAYERS <= MAX_LAYER, "Number of keymap layers exceeds maximum set by LAYER_STATE_(8|16|32)BIT"); +#endif  uint16_t keycode_at_keymap_location_raw(uint8_t layer_num, uint8_t row, uint8_t column) {      if (layer_num < NUM_KEYMAP_LAYERS && row < MATRIX_ROWS && column < MATRIX_COLS) { diff --git a/quantum/led.c b/quantum/led.c index 7db38bb88c..42144566fd 100644 --- a/quantum/led.c +++ b/quantum/led.c @@ -69,14 +69,6 @@ uint32_t last_led_activity_elapsed(void) {   */  __attribute__((weak)) void led_set_user(uint8_t usb_led) {} -/** \brief Lock LED set callback - keyboard level - * - * \deprecated Use led_update_kb() instead. - */ -__attribute__((weak)) void led_set_kb(uint8_t usb_led) { -    led_set_user(usb_led); -} -  /** \brief Lock LED update callback - keymap/user level   *   * \return True if led_update_kb() should run its own code, false otherwise. @@ -154,7 +146,7 @@ __attribute__((weak)) void led_set(uint8_t usb_led) {      handle_backlight_caps_lock((led_t)usb_led);  #endif -    led_set_kb(usb_led); +    led_set_user(usb_led);      led_update_kb((led_t)usb_led);  } diff --git a/quantum/led.h b/quantum/led.h index d12e519ea2..b9ad7ed9ae 100644 --- a/quantum/led.h +++ b/quantum/led.h @@ -55,9 +55,10 @@ void led_wakeup(void);  void led_task(void); -/* Callbacks */ +/* Deprecated callbacks */  void led_set_user(uint8_t usb_led); -void led_set_kb(uint8_t usb_led); + +/* Callbacks */  bool led_update_user(led_t led_state);  bool led_update_kb(led_t led_state);  void led_update_ports(led_t led_state); diff --git a/quantum/logging/nodebug.h b/quantum/logging/nodebug.h deleted file mode 100644 index 0b176684bd..0000000000 --- a/quantum/logging/nodebug.h +++ /dev/null @@ -1,26 +0,0 @@ -/* -Copyright 2013 Jun Wako <wakojun@gmail.com> - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program.  If not, see <http://www.gnu.org/licenses/>. -*/ - -#pragma once - -#ifndef NO_DEBUG -#    define NO_DEBUG -#    include "debug.h" -#    undef NO_DEBUG -#else -#    include "debug.h" -#endif diff --git a/quantum/main.c b/quantum/main.c index 2d5911b708..3b101c522c 100644 --- a/quantum/main.c +++ b/quantum/main.c @@ -60,9 +60,9 @@ int main(void) {          protocol_task();  #ifdef QUANTUM_PAINTER_ENABLE -        // Run Quantum Painter animations -        void qp_internal_animation_tick(void); -        qp_internal_animation_tick(); +        // Run Quantum Painter task +        void qp_internal_task(void); +        qp_internal_task();  #endif  #ifdef DEFERRED_EXEC_ENABLE diff --git a/quantum/matrix.c b/quantum/matrix.c index db683104ed..0de65c6cdd 100644 --- a/quantum/matrix.c +++ b/quantum/matrix.c @@ -46,6 +46,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  #    define SPLIT_MUTABLE_COL const  #endif +#ifndef MATRIX_INPUT_PRESSED_STATE +#    define MATRIX_INPUT_PRESSED_STATE 0 +#endif +  #ifdef DIRECT_PINS  static SPLIT_MUTABLE pin_t direct_pins[ROWS_PER_HAND][MATRIX_COLS] = DIRECT_PINS;  #elif (DIODE_DIRECTION == ROW2COL) || (DIODE_DIRECTION == COL2ROW) @@ -93,7 +97,7 @@ static inline void setPinInputHigh_atomic(pin_t pin) {  static inline uint8_t readMatrixPin(pin_t pin) {      if (pin != NO_PIN) { -        return readPin(pin); +        return (readPin(pin) == MATRIX_INPUT_PRESSED_STATE) ? 0 : 1;      } else {          return 1;      } @@ -121,9 +125,7 @@ __attribute__((weak)) void matrix_read_cols_on_row(matrix_row_t current_matrix[]      matrix_row_t row_shifter = MATRIX_ROW_SHIFTER;      for (uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++, row_shifter <<= 1) {          pin_t pin = direct_pins[current_row][col_index]; -        if (pin != NO_PIN) { -            current_row_value |= readPin(pin) ? 0 : row_shifter; -        } +        current_row_value |= readMatrixPin(pin) ? 0 : row_shifter;      }      // Update the matrix diff --git a/quantum/os_detection.c b/quantum/os_detection.c new file mode 100644 index 0000000000..b1511afb14 --- /dev/null +++ b/quantum/os_detection.c @@ -0,0 +1,129 @@ +/* Copyright 2022 Ruslan Sayfutdinov (@KapJI) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program.  If not, see <http://www.gnu.org/licenses/>. + */ + +#include "os_detection.h" + +#include <string.h> + +#ifdef OS_DETECTION_DEBUG_ENABLE +#    include "eeconfig.h" +#    include "eeprom.h" +#    include "print.h" + +#    define STORED_USB_SETUPS 50 +#    define EEPROM_USER_OFFSET (uint8_t*)EECONFIG_SIZE + +uint16_t usb_setups[STORED_USB_SETUPS]; +#endif + +#ifdef OS_DETECTION_ENABLE +struct setups_data_t { +    uint8_t      count; +    uint8_t      cnt_02; +    uint8_t      cnt_04; +    uint8_t      cnt_ff; +    uint16_t     last_wlength; +    os_variant_t detected_os; +}; + +struct setups_data_t setups_data = { +    .count       = 0, +    .cnt_02      = 0, +    .cnt_04      = 0, +    .cnt_ff      = 0, +    .detected_os = OS_UNSURE, +}; + +// Some collected sequences of wLength can be found in tests. +void make_guess(void) { +    if (setups_data.count < 3) { +        return; +    } +    if (setups_data.cnt_ff >= 2 && setups_data.cnt_04 >= 1) { +        setups_data.detected_os = OS_WINDOWS; +        return; +    } +    if (setups_data.count == setups_data.cnt_ff) { +        // Linux has 3 packets with 0xFF. +        setups_data.detected_os = OS_LINUX; +        return; +    } +    if (setups_data.count == 5 && setups_data.last_wlength == 0xFF && setups_data.cnt_ff == 1 && setups_data.cnt_02 == 2) { +        setups_data.detected_os = OS_MACOS; +        return; +    } +    if (setups_data.count == 4 && setups_data.cnt_ff == 0 && setups_data.cnt_02 == 2) { +        // iOS and iPadOS don't have the last 0xFF packet. +        setups_data.detected_os = OS_IOS; +        return; +    } +    if (setups_data.cnt_ff == 0 && setups_data.cnt_02 == 3 && setups_data.cnt_04 == 1) { +        // This is actually PS5. +        setups_data.detected_os = OS_LINUX; +        return; +    } +    if (setups_data.cnt_ff >= 1 && setups_data.cnt_02 == 0 && setups_data.cnt_04 == 0) { +        // This is actually Quest 2 or Nintendo Switch. +        setups_data.detected_os = OS_LINUX; +        return; +    } +} + +void process_wlength(const uint16_t w_length) { +#    ifdef OS_DETECTION_DEBUG_ENABLE +    usb_setups[setups_data.count] = w_length; +#    endif +    setups_data.count++; +    setups_data.last_wlength = w_length; +    if (w_length == 0x2) { +        setups_data.cnt_02++; +    } else if (w_length == 0x4) { +        setups_data.cnt_04++; +    } else if (w_length == 0xFF) { +        setups_data.cnt_ff++; +    } +    make_guess(); +} + +os_variant_t detected_host_os(void) { +    return setups_data.detected_os; +} + +void erase_wlength_data(void) { +    memset(&setups_data, 0, sizeof(setups_data)); +} +#endif // OS_DETECTION_ENABLE + +#ifdef OS_DETECTION_DEBUG_ENABLE +void print_stored_setups(void) { +#    ifdef CONSOLE_ENABLE +    uint8_t cnt = eeprom_read_byte(EEPROM_USER_OFFSET); +    for (uint16_t i = 0; i < cnt; ++i) { +        uint16_t* addr = (uint16_t*)EEPROM_USER_OFFSET + i * sizeof(uint16_t) + sizeof(uint8_t); +        xprintf("i: %d, wLength: 0x%02X\n", i, eeprom_read_word(addr)); +    } +#    endif +} + +void store_setups_in_eeprom(void) { +    eeprom_update_byte(EEPROM_USER_OFFSET, setups_data.count); +    for (uint16_t i = 0; i < setups_data.count; ++i) { +        uint16_t* addr = (uint16_t*)EEPROM_USER_OFFSET + i * sizeof(uint16_t) + sizeof(uint8_t); +        eeprom_update_word(addr, usb_setups[i]); +    } +} + +#endif // OS_DETECTION_DEBUG_ENABLE diff --git a/quantum/os_detection.h b/quantum/os_detection.h new file mode 100644 index 0000000000..e643dcd27f --- /dev/null +++ b/quantum/os_detection.h @@ -0,0 +1,38 @@ +/* Copyright 2022 Ruslan Sayfutdinov (@KapJI) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program.  If not, see <http://www.gnu.org/licenses/>. + */ + +#pragma once + +#include <stdint.h> + +#ifdef OS_DETECTION_ENABLE +typedef enum { +    OS_UNSURE, +    OS_LINUX, +    OS_WINDOWS, +    OS_MACOS, +    OS_IOS, +} os_variant_t; + +void         process_wlength(const uint16_t w_length); +os_variant_t detected_host_os(void); +void         erase_wlength_data(void); +#endif + +#ifdef OS_DETECTION_DEBUG_ENABLE +void print_stored_setups(void); +void store_setups_in_eeprom(void); +#endif diff --git a/quantum/os_detection/tests/os_detection.cpp b/quantum/os_detection/tests/os_detection.cpp new file mode 100644 index 0000000000..102349852e --- /dev/null +++ b/quantum/os_detection/tests/os_detection.cpp @@ -0,0 +1,164 @@ +/* Copyright 2022 Ruslan Sayfutdinov (@KapJI) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program.  If not, see <http://www.gnu.org/licenses/>. + */ + +#include "gtest/gtest.h" + +extern "C" { +#include "os_detection.h" +} + +class OsDetectionTest : public ::testing::Test { +   protected: +    void SetUp() override { +        erase_wlength_data(); +    } +}; + +os_variant_t check_sequence(const std::vector<uint16_t> &w_lengths) { +    for (auto &w_length : w_lengths) { +        process_wlength(w_length); +    } +    return detected_host_os(); +} + +/* Some collected data. + +ChibiOS: +Windows 10: [FF, FF, 4, 24, 4, 24, 4, FF, 24, FF, 4, FF, 24, 4, 24, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A, 20A] +Windows 10 (another host): [FF, FF, 4, 24, 4, 24, 4, 24, 4, 24, 4, 24] +macOS 12.5: [2, 24, 2, 28, FF] +iOS/iPadOS 15.6: [2, 24, 2, 28] +Linux (including Android, Raspberry Pi and WebOS TV): [FF, FF, FF] +PS5: [2, 4, 2, 28, 2, 24] +Nintendo Switch: [82, FF, 40, 40, FF, 40, 40, FF, 40, 40, FF, 40, 40, FF, 40, 40] +Quest 2: [FF, FF, FF, FE, FF, FE, FF, FE, FF, FE, FF] + +LUFA: +Windows 10 (first connect): [12, FF, FF, 4, 10, FF, FF, FF, 4, 10, 20A, 20A, 20A, 20A, 20A, 20A] +Windows 10 (subsequent connect): [FF, FF, 4, 10, FF, 4, FF, 10, FF, 20A, 20A, 20A, 20A, 20A, 20A] +Windows 10 (another host): [FF, FF, 4, 10, 4, 10] +macOS: [2, 10, 2, E, FF] +iOS/iPadOS: [2, 10, 2, E] +Linux: [FF, FF, FF] +PS5: [2, 4, 2, E, 2, 10] +Nintendo Switch: [82, FF, 40, 40, FF, 40, 40] + +V-USB: +Windows 10: [FF, FF, 4, E, FF] +Windows 10 (another host): [FF, FF, 4, E, 4] +macOS: [2, E, 2, E, FF] +iOS/iPadOS: [2, E, 2, E] +Linux: [FF, FF, FF] +PS5: [2, 4, 2, E, 2] +Nintendo Switch: [82, FF, 40, 40] +Quest 2: [FF, FF, FF, FE] + +Common parts: +Windows: [..., FF, FF, 4, ...] +macOS: [2, _, 2, _, FF] +iOS/iPadOS: [2, _, 2, _] +Linux: [FF, FF, FF] +PS5: [2, 4, 2, _, 2, ...] +Nintendo Switch: [82, FF, 40, 40, ...] +Quest 2: [FF, FF, FF, FE, ...] +*/ +TEST_F(OsDetectionTest, TestLinux) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0xFF}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestChibiosMacos) { +    EXPECT_EQ(check_sequence({0x2, 0x24, 0x2, 0x28, 0xFF}), OS_MACOS); +} + +TEST_F(OsDetectionTest, TestLufaMacos) { +    EXPECT_EQ(check_sequence({0x2, 0x10, 0x2, 0xE, 0xFF}), OS_MACOS); +} + +TEST_F(OsDetectionTest, TestVusbMacos) { +    EXPECT_EQ(check_sequence({0x2, 0xE, 0x2, 0xE, 0xFF}), OS_MACOS); +} + +TEST_F(OsDetectionTest, TestChibiosIos) { +    EXPECT_EQ(check_sequence({0x2, 0x24, 0x2, 0x28}), OS_IOS); +} + +TEST_F(OsDetectionTest, TestLufaIos) { +    EXPECT_EQ(check_sequence({0x2, 0x10, 0x2, 0xE}), OS_IOS); +} + +TEST_F(OsDetectionTest, TestVusbIos) { +    EXPECT_EQ(check_sequence({0x2, 0xE, 0x2, 0xE}), OS_IOS); +} + +TEST_F(OsDetectionTest, TestChibiosWindows10) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0x24, 0x4, 0x24, 0x4, 0xFF, 0x24, 0xFF, 0x4, 0xFF, 0x24, 0x4, 0x24, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestChibiosWindows10_2) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0x24, 0x4, 0x24, 0x4, 0x24, 0x4, 0x24, 0x4, 0x24}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestLufaWindows10) { +    EXPECT_EQ(check_sequence({0x12, 0xFF, 0xFF, 0x4, 0x10, 0xFF, 0xFF, 0xFF, 0x4, 0x10, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestLufaWindows10_2) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0x10, 0xFF, 0x4, 0xFF, 0x10, 0xFF, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A, 0x20A}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestLufaWindows10_3) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0x10, 0x4, 0x10}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestVusbWindows10) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0xE, 0xFF}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestVusbWindows10_2) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0x4, 0xE, 0x4}), OS_WINDOWS); +} + +TEST_F(OsDetectionTest, TestChibiosPs5) { +    EXPECT_EQ(check_sequence({0x2, 0x4, 0x2, 0x28, 0x2, 0x24}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestLufaPs5) { +    EXPECT_EQ(check_sequence({0x2, 0x4, 0x2, 0xE, 0x2, 0x10}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestVusbPs5) { +    EXPECT_EQ(check_sequence({0x2, 0x4, 0x2, 0xE, 0x2}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestChibiosNintendoSwitch) { +    EXPECT_EQ(check_sequence({0x82, 0xFF, 0x40, 0x40, 0xFF, 0x40, 0x40, 0xFF, 0x40, 0x40, 0xFF, 0x40, 0x40, 0xFF, 0x40, 0x40}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestLufaNintendoSwitch) { +    EXPECT_EQ(check_sequence({0x82, 0xFF, 0x40, 0x40, 0xFF, 0x40, 0x40}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestVusbNintendoSwitch) { +    EXPECT_EQ(check_sequence({0x82, 0xFF, 0x40, 0x40}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestChibiosQuest2) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF}), OS_LINUX); +} + +TEST_F(OsDetectionTest, TestVusbQuest2) { +    EXPECT_EQ(check_sequence({0xFF, 0xFF, 0xFF, 0xFE}), OS_LINUX); +} diff --git a/quantum/os_detection/tests/rules.mk b/quantum/os_detection/tests/rules.mk new file mode 100644 index 0000000000..9bfe373f46 --- /dev/null +++ b/quantum/os_detection/tests/rules.mk @@ -0,0 +1,5 @@ +os_detection_DEFS := -DOS_DETECTION_ENABLE + +os_detection_SRC := \ +    $(QUANTUM_PATH)/os_detection/tests/os_detection.cpp \ +    $(QUANTUM_PATH)/os_detection.c diff --git a/quantum/os_detection/tests/testlist.mk b/quantum/os_detection/tests/testlist.mk new file mode 100644 index 0000000000..405a7b82d5 --- /dev/null +++ b/quantum/os_detection/tests/testlist.mk @@ -0,0 +1 @@ +TEST_LIST += os_detection diff --git a/quantum/painter/lvgl/qp_lvgl.c b/quantum/painter/lvgl/qp_lvgl.c new file mode 100644 index 0000000000..41ca3f98c2 --- /dev/null +++ b/quantum/painter/lvgl/qp_lvgl.c @@ -0,0 +1,144 @@ +// Copyright 2022 Jose Pablo Ramirez (@jpe230) +// Copyright 2022 Nick Brassel (@tzarc) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "qp_lvgl.h" +#include "timer.h" +#include "deferred_exec.h" +#include "lvgl.h" + +typedef struct lvgl_state_t { +    uint8_t        fnc_id; // Ideally this should be the pointer of the function to run +    uint16_t       delay_ms; +    deferred_token defer_token; +} lvgl_state_t; + +static deferred_executor_t lvgl_executors[2] = {0}; // For lv_tick_inc and lv_task_handler +static lvgl_state_t        lvgl_states[2]    = {0}; // For lv_tick_inc and lv_task_handler + +painter_device_t selected_display = NULL; +void *           color_buffer     = NULL; + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter LVGL Integration Internal: qp_lvgl_flush + +void qp_lvgl_flush(lv_disp_drv_t *disp, const lv_area_t *area, lv_color_t *color_p) { +    if (selected_display) { +        uint32_t number_pixels = (area->x2 - area->x1 + 1) * (area->y2 - area->y1 + 1); +        qp_viewport(selected_display, area->x1, area->y1, area->x2, area->y2); +        qp_pixdata(selected_display, (void *)color_p, number_pixels); +        qp_flush(selected_display); +        lv_disp_flush_ready(disp); +    } +} + +static uint32_t tick_task_callback(uint32_t trigger_time, void *cb_arg) { +    lvgl_state_t *  state     = (lvgl_state_t *)cb_arg; +    static uint32_t last_tick = 0; +    switch (state->fnc_id) { +        case 0: { +            uint32_t now = timer_read32(); +            lv_tick_inc(TIMER_DIFF_32(now, last_tick)); +            last_tick = now; +        } break; +        case 1: +            lv_task_handler(); +            break; + +        default: +            break; +    } + +    // The tasks should run indefinitely +    return state->delay_ms; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter LVGL Integration API: qp_lvgl_attach + +bool qp_lvgl_attach(painter_device_t device) { +    qp_dprintf("qp_lvgl_start: entry\n"); +    qp_lvgl_detach(); + +    struct painter_driver_t *driver = (struct painter_driver_t *)device; +    if (!driver->validate_ok) { +        qp_dprintf("qp_lvgl_attach: fail (validation_ok == false)\n"); +        qp_lvgl_detach(); +        return false; +    } + +    // Setting up the tasks +    lvgl_state_t *lv_tick_inc_state = &lvgl_states[0]; +    lv_tick_inc_state->fnc_id       = 0; +    lv_tick_inc_state->delay_ms     = 1; +    lv_tick_inc_state->defer_token  = defer_exec_advanced(lvgl_executors, 2, 1, tick_task_callback, lv_tick_inc_state); + +    if (lv_tick_inc_state->defer_token == INVALID_DEFERRED_TOKEN) { +        qp_dprintf("qp_lvgl_attach: fail (could not set up qp_lvgl executor)\n"); +        qp_lvgl_detach(); +        return false; +    } + +    lvgl_state_t *lv_task_handler_state = &lvgl_states[1]; +    lv_task_handler_state->fnc_id       = 1; +    lv_task_handler_state->delay_ms     = 5; +    lv_task_handler_state->defer_token  = defer_exec_advanced(lvgl_executors, 2, 5, tick_task_callback, lv_task_handler_state); + +    if (lv_task_handler_state->defer_token == INVALID_DEFERRED_TOKEN) { +        qp_dprintf("qp_lvgl_attach: fail (could not set up qp_lvgl executor)\n"); +        qp_lvgl_detach(); +        return false; +    } + +    // Init LVGL +    lv_init(); + +    // Set up lvgl display buffer +    static lv_disp_draw_buf_t draw_buf; +    // Allocate a buffer for 1/10 screen size +    const size_t count_required = driver->panel_width * driver->panel_height / 10; +    color_buffer                = color_buffer ? realloc(color_buffer, sizeof(lv_color_t) * count_required) : malloc(sizeof(lv_color_t) * count_required); +    if (!color_buffer) { +        qp_dprintf("qp_lvgl_attach: fail (could not set up memory buffer)\n"); +        qp_lvgl_detach(); +        return false; +    } +    memset(color_buffer, 0, sizeof(lv_color_t) * count_required); +    // Initialize the display buffer. +    lv_disp_draw_buf_init(&draw_buf, color_buffer, NULL, count_required); + +    selected_display = device; + +    // Setting up display driver +    static lv_disp_drv_t disp_drv;            /*Descriptor of a display driver*/ +    lv_disp_drv_init(&disp_drv);              /*Basic initialization*/ +    disp_drv.flush_cb = qp_lvgl_flush;        /*Set your driver function*/ +    disp_drv.draw_buf = &draw_buf;            /*Assign the buffer to the display*/ +    disp_drv.hor_res  = driver->panel_width;  /*Set the horizontal resolution of the display*/ +    disp_drv.ver_res  = driver->panel_height; /*Set the vertical resolution of the display*/ +    lv_disp_drv_register(&disp_drv);          /*Finally register the driver*/ + +    return true; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter LVGL Integration API: qp_lvgl_detach + +void qp_lvgl_detach(void) { +    for (int i = 0; i < 2; ++i) { +        cancel_deferred_exec_advanced(lvgl_executors, 2, lvgl_states[i].defer_token); +    } +    if (color_buffer) { +        free(color_buffer); +        color_buffer = NULL; +    } +    selected_display = NULL; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter LVGL Integration Internal: qp_lvgl_internal_tick + +void qp_lvgl_internal_tick(void) { +    static uint32_t last_lvgl_exec = 0; +    deferred_exec_advanced_task(lvgl_executors, 2, &last_lvgl_exec); +} diff --git a/quantum/painter/lvgl/qp_lvgl.h b/quantum/painter/lvgl/qp_lvgl.h new file mode 100644 index 0000000000..d9ad5e8df1 --- /dev/null +++ b/quantum/painter/lvgl/qp_lvgl.h @@ -0,0 +1,25 @@ +// Copyright 2022 Jose Pablo Ramirez (@jpe230) +// Copyright 2022 Nick Brassel (@tzarc) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "qp.h" +#include "lvgl.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter - LVGL External API + +/** + * Sets up LVGL with the supplied display. + * + * @param device[in] the handle of the device to control + * @return true if init. of LVGL succeeded + * @return false if init. of LVGL failed + */ +bool qp_lvgl_attach(painter_device_t device); + +/** + * Disconnects LVGL from any attached display + */ +void qp_lvgl_detach(void); diff --git a/quantum/painter/lvgl/rules.mk b/quantum/painter/lvgl/rules.mk new file mode 100644 index 0000000000..50226941b3 --- /dev/null +++ b/quantum/painter/lvgl/rules.mk @@ -0,0 +1,24 @@ +# LVGL Integration + +OPT_DEFS += -DQUANTUM_PAINTER_LVGL_INTEGRATION_ENABLE -DLV_CONF_INCLUDE_SIMPLE +DEFERRED_EXEC_ENABLE := yes + +LVGL_DIR_NAME = lvgl +LVGL_DIR = $(LIB_DIR) +LVGL_PATH = $(LVGL_DIR)/$(LVGL_DIR_NAME) + +COMMON_VPATH += $(PLATFORM_PATH) \ +                $(QUANTUM_DIR)/painter/$(LVGL_DIR_NAME) \ +                $(LVGL_PATH) + +include $(LVGL_PATH)/src/extra/extra.mk +include $(LVGL_PATH)/src/core/lv_core.mk +include $(LVGL_PATH)/src/draw/lv_draw.mk +include $(LVGL_PATH)/src/draw/sw/lv_draw_sw.mk +include $(LVGL_PATH)/src/font/lv_font.mk +include $(LVGL_PATH)/src/hal/lv_hal.mk +include $(LVGL_PATH)/src/misc/lv_misc.mk +include $(LVGL_PATH)/src/widgets/lv_widgets.mk + +SRC += qp_lvgl.c \ +       $(CSRCS) diff --git a/quantum/painter/qgf.c b/quantum/painter/qgf.c index 834837105b..6a4af07001 100644 --- a/quantum/painter/qgf.c +++ b/quantum/painter/qgf.c @@ -38,11 +38,13 @@ bool qgf_parse_format(qp_image_format_t format, uint8_t *bpp, bool *has_palette)          [PALETTE_2BPP] = {.bpp = 2, .has_palette = true},          [PALETTE_4BPP] = {.bpp = 4, .has_palette = true},          [PALETTE_8BPP] = {.bpp = 8, .has_palette = true}, +        [RGB565_16BPP] = {.bpp = 16, .has_palette = false}, +        [RGB888_24BPP] = {.bpp = 24, .has_palette = false},      };      // clang-format on      // Copy out the required info -    if (format > PALETTE_8BPP) { +    if (format > RGB888_24BPP) {          qp_dprintf("Failed to parse frame_descriptor, invalid format 0x%02X\n", (int)format);          return false;      } diff --git a/quantum/painter/qp.c b/quantum/painter/qp.c index e292ff6497..de36dee2c1 100644 --- a/quantum/painter/qp.c +++ b/quantum/painter/qp.c @@ -12,7 +12,7 @@  // Internal driver validation  static bool validate_driver_vtable(struct painter_driver_t *driver) { -    return (driver->driver_vtable && driver->driver_vtable->init && driver->driver_vtable->power && driver->driver_vtable->clear && driver->driver_vtable->viewport && driver->driver_vtable->pixdata && driver->driver_vtable->palette_convert && driver->driver_vtable->append_pixels) ? true : false; +    return (driver->driver_vtable && driver->driver_vtable->init && driver->driver_vtable->power && driver->driver_vtable->clear && driver->driver_vtable->viewport && driver->driver_vtable->pixdata && driver->driver_vtable->palette_convert && driver->driver_vtable->append_pixels && driver->driver_vtable->append_pixdata) ? true : false;  }  static bool validate_comms_vtable(struct painter_driver_t *driver) { diff --git a/quantum/painter/qp.h b/quantum/painter/qp.h index 69bc435961..00f5d7931a 100644 --- a/quantum/painter/qp.h +++ b/quantum/painter/qp.h @@ -64,6 +64,14 @@  #    define QUANTUM_PAINTER_SUPPORTS_256_PALETTE FALSE  #endif +#ifndef QUANTUM_PAINTER_SUPPORTS_NATIVE_COLORS +/** + * @def This controls whether the native color range is supported. This avoids the use of palettes but each image + *      requires more storage space. + */ +#    define QUANTUM_PAINTER_SUPPORTS_NATIVE_COLORS FALSE +#endif +  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////  // Quantum Painter types @@ -463,3 +471,10 @@ int16_t qp_drawtext_recolor(painter_device_t device, uint16_t x, uint16_t y, pai  #ifdef QUANTUM_PAINTER_SSD1351_ENABLE  #    include "qp_ssd1351.h"  #endif // QUANTUM_PAINTER_SSD1351_ENABLE + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter Extras + +#ifdef QUANTUM_PAINTER_LVGL_INTEGRATION_ENABLE +#    include "qp_lvgl.h" +#endif // QUANTUM_PAINTER_LVGL_INTEGRATION_ENABLE diff --git a/quantum/painter/qp_draw.h b/quantum/painter/qp_draw.h index 7094d80eaa..84b1946ca7 100644 --- a/quantum/painter/qp_draw.h +++ b/quantum/painter/qp_draw.h @@ -30,9 +30,11 @@ bool qp_internal_fillrect_helper_impl(painter_device_t device, uint16_t l, uint1  // Convert from input pixel data + palette to equivalent pixels  typedef int16_t (*qp_internal_byte_input_callback)(void* cb_arg);  typedef bool (*qp_internal_pixel_output_callback)(qp_pixel_t* palette, uint8_t index, void* cb_arg); +typedef bool (*qp_internal_byte_output_callback)(uint8_t byte, void* cb_arg);  bool qp_internal_decode_palette(painter_device_t device, uint32_t pixel_count, uint8_t bits_per_pixel, qp_internal_byte_input_callback input_callback, void* input_arg, qp_pixel_t* palette, qp_internal_pixel_output_callback output_callback, void* output_arg);  bool qp_internal_decode_grayscale(painter_device_t device, uint32_t pixel_count, uint8_t bits_per_pixel, qp_internal_byte_input_callback input_callback, void* input_arg, qp_internal_pixel_output_callback output_callback, void* output_arg);  bool qp_internal_decode_recolor(painter_device_t device, uint32_t pixel_count, uint8_t bits_per_pixel, qp_internal_byte_input_callback input_callback, void* input_arg, qp_pixel_t fg_hsv888, qp_pixel_t bg_hsv888, qp_internal_pixel_output_callback output_callback, void* output_arg); +bool qp_internal_send_bytes(painter_device_t device, uint32_t byte_count, qp_internal_byte_input_callback input_callback, void* input_arg, qp_internal_byte_output_callback output_callback, void* output_arg);  // Global variable used for interpolated pixel lookup table.  #if QUANTUM_PAINTER_SUPPORTS_256_PALETTE @@ -82,4 +84,12 @@ struct qp_internal_pixel_output_state {  bool qp_internal_pixel_appender(qp_pixel_t* palette, uint8_t index, void* cb_arg); +struct qp_internal_byte_output_state { +    painter_device_t device; +    uint32_t         byte_write_pos; +    uint32_t         max_bytes; +}; + +bool qp_internal_byte_appender(uint8_t byteval, void* cb_arg); +  qp_internal_byte_input_callback qp_internal_prepare_input_state(struct qp_internal_byte_input_state* input_state, painter_compression_t compression); diff --git a/quantum/painter/qp_draw_codec.c b/quantum/painter/qp_draw_codec.c index 438dce3994..5d1cf7c52e 100644 --- a/quantum/painter/qp_draw_codec.c +++ b/quantum/painter/qp_draw_codec.c @@ -12,18 +12,19 @@ static const qp_pixel_t qp_pixel_white = {.hsv888 = {.h = 0, .s = 0, .v = 255}};  static const qp_pixel_t qp_pixel_black = {.hsv888 = {.h = 0, .s = 0, .v = 0}};  bool qp_internal_bpp_capable(uint8_t bits_per_pixel) { -#if !(QUANTUM_PAINTER_SUPPORTS_256_PALETTE) +#if !(QUANTUM_PAINTER_SUPPORTS_NATIVE_COLORS) +#    if !(QUANTUM_PAINTER_SUPPORTS_256_PALETTE)      if (bits_per_pixel > 4) {          qp_dprintf("qp_internal_decode_palette: image bpp greater than 4\n");          return false;      } -#endif +#    endif      if (bits_per_pixel > 8) {          qp_dprintf("qp_internal_decode_palette: image bpp greater than 8\n");          return false;      } - +#endif      return true;  } @@ -32,7 +33,7 @@ bool qp_internal_decode_palette(painter_device_t device, uint32_t pixel_count, u      const uint8_t pixels_per_byte  = 8 / bits_per_pixel;      uint32_t      remaining_pixels = pixel_count; // don't try to derive from byte_count, we may not use an entire byte      while (remaining_pixels > 0) { -        uint8_t byteval = input_callback(input_arg); +        int16_t byteval = input_callback(input_arg);          if (byteval < 0) {              return false;          } @@ -64,6 +65,21 @@ bool qp_internal_decode_recolor(painter_device_t device, uint32_t pixel_count, u      return qp_internal_decode_palette(device, pixel_count, bits_per_pixel, input_callback, input_arg, qp_internal_global_pixel_lookup_table, output_callback, output_arg);  } +bool qp_internal_send_bytes(painter_device_t device, uint32_t byte_count, qp_internal_byte_input_callback input_callback, void* input_arg, qp_internal_byte_output_callback output_callback, void* output_arg) { +    uint32_t remaining_bytes = byte_count; +    while (remaining_bytes > 0) { +        int16_t byteval = input_callback(input_arg); +        if (byteval < 0) { +            return false; +        } +        if (!output_callback(byteval, output_arg)) { +            return false; +        } +        remaining_bytes -= 1; +    } +    return true; +} +  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////  // Progressive pull of bytes, push of pixels @@ -128,6 +144,26 @@ bool qp_internal_pixel_appender(qp_pixel_t* palette, uint8_t index, void* cb_arg      return true;  } +bool qp_internal_byte_appender(uint8_t byteval, void* cb_arg) { +    struct qp_internal_byte_output_state* state  = (struct qp_internal_byte_output_state*)cb_arg; +    struct painter_driver_t*              driver = (struct painter_driver_t*)state->device; + +    if (!driver->driver_vtable->append_pixdata(state->device, qp_internal_global_pixdata_buffer, state->byte_write_pos++, byteval)) { +        return false; +    } + +    // If we've hit the transmit limit, send out the entire buffer and reset the write position +    if (state->byte_write_pos == state->max_bytes) { +        struct painter_driver_t* driver = (struct painter_driver_t*)state->device; +        if (!driver->driver_vtable->pixdata(state->device, qp_internal_global_pixdata_buffer, state->byte_write_pos * 8 / driver->native_bits_per_pixel)) { +            return false; +        } +        state->byte_write_pos = 0; +    } + +    return true; +} +  qp_internal_byte_input_callback qp_internal_prepare_input_state(struct qp_internal_byte_input_state* input_state, painter_compression_t compression) {      switch (compression) {          case IMAGE_UNCOMPRESSED: diff --git a/quantum/painter/qp_draw_image.c b/quantum/painter/qp_draw_image.c index e9b975f23a..fa80617242 100644 --- a/quantum/painter/qp_draw_image.c +++ b/quantum/painter/qp_draw_image.c @@ -151,7 +151,7 @@ static bool qp_drawimage_prepare_frame_for_stream_read(painter_device_t device,      qp_internal_invalidate_palette();      if (!qp_internal_bpp_capable(info->bpp)) { -        qp_dprintf("qp_drawimage_recolor: fail (image bpp too high (%d), check QUANTUM_PAINTER_SUPPORTS_256_PALETTE)\n", (int)info->bpp); +        qp_dprintf("qp_drawimage_recolor: fail (image bpp too high (%d), check QUANTUM_PAINTER_SUPPORTS_256_PALETTE or QUANTUM_PAINTER_SUPPORTS_NATIVE_COLORS)\n", (int)info->bpp);          qp_comms_stop(device);          return false;      } @@ -167,8 +167,10 @@ static bool qp_drawimage_prepare_frame_for_stream_read(painter_device_t device,          needs_pixconvert = true;      } else { -        // Interpolate from fg/bg -        needs_pixconvert = qp_internal_interpolate_palette(fg_hsv888, bg_hsv888, palette_entries); +        if (info->bpp <= 8) { +            // Interpolate from fg/bg +            needs_pixconvert = qp_internal_interpolate_palette(fg_hsv888, bg_hsv888, palette_entries); +        }      }      if (needs_pixconvert) { @@ -260,15 +262,28 @@ static bool qp_drawimage_recolor_impl(painter_device_t device, uint16_t x, uint1          return false;      } -    // Set up the output state -    struct qp_internal_pixel_output_state output_state = {.device = device, .pixel_write_pos = 0, .max_pixels = qp_internal_num_pixels_in_buffer(device)}; - -    // Decode the pixel data and stream to the display -    bool ret = qp_internal_decode_palette(device, pixel_count, frame_info->bpp, input_callback, &input_state, qp_internal_global_pixel_lookup_table, qp_internal_pixel_appender, &output_state); +    bool ret = false; +    if (frame_info->bpp <= 8) { +        // Set up the output state +        struct qp_internal_pixel_output_state output_state = {.device = device, .pixel_write_pos = 0, .max_pixels = qp_internal_num_pixels_in_buffer(device)}; -    // Any leftovers need transmission as well. -    if (ret && output_state.pixel_write_pos > 0) { -        ret &= driver->driver_vtable->pixdata(device, qp_internal_global_pixdata_buffer, output_state.pixel_write_pos); +        // Decode the pixel data and stream to the display +        ret = qp_internal_decode_palette(device, pixel_count, frame_info->bpp, input_callback, &input_state, qp_internal_global_pixel_lookup_table, qp_internal_pixel_appender, &output_state); +        // Any leftovers need transmission as well. +        if (ret && output_state.pixel_write_pos > 0) { +            ret &= driver->driver_vtable->pixdata(device, qp_internal_global_pixdata_buffer, output_state.pixel_write_pos); +        } +    } else { +        // Set up the output state +        struct qp_internal_byte_output_state output_state = {.device = device, .byte_write_pos = 0, .max_bytes = qp_internal_num_pixels_in_buffer(device) * driver->native_bits_per_pixel / 8}; + +        // Stream the raw pixel data to the display +        uint32_t byte_count = pixel_count * frame_info->bpp / 8; +        ret                 = qp_internal_send_bytes(device, byte_count, input_callback, &input_state, qp_internal_byte_appender, &output_state); +        // Any leftovers need transmission as well. +        if (ret && output_state.byte_write_pos > 0) { +            ret &= driver->driver_vtable->pixdata(device, qp_internal_global_pixdata_buffer, output_state.byte_write_pos * 8 / driver->native_bits_per_pixel); +        }      }      qp_dprintf("qp_drawimage_recolor: %s\n", ret ? "ok" : "fail"); @@ -399,3 +414,15 @@ void qp_internal_animation_tick(void) {      static uint32_t last_anim_exec = 0;      deferred_exec_advanced_task(animation_executors, QUANTUM_PAINTER_CONCURRENT_ANIMATIONS, &last_anim_exec);  } + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +// Quantum Painter Core API: qp_internal_task + +void qp_internal_task(void) { +    qp_internal_animation_tick(); +#ifdef QUANTUM_PAINTER_LVGL_INTEGRATION_ENABLE +    // Run LVGL ticks +    void qp_lvgl_internal_tick(void); +    qp_lvgl_internal_tick(); +#endif +} diff --git a/quantum/painter/qp_draw_text.c b/quantum/painter/qp_draw_text.c index 0f5473abd0..f9fb2bf08f 100644 --- a/quantum/painter/qp_draw_text.c +++ b/quantum/painter/qp_draw_text.c @@ -100,7 +100,7 @@ static painter_font_handle_t qp_load_font_internal(bool (*stream_factory)(qff_fo      qff_read_font_descriptor(&font->stream, &font->base.line_height, &font->has_ascii_table, &font->num_unicode_glyphs, &font->bpp, &font->has_palette, &font->compression_scheme, NULL);      if (!qp_internal_bpp_capable(font->bpp)) { -        qp_dprintf("qp_load_font: fail (image bpp too high (%d), check QUANTUM_PAINTER_SUPPORTS_256_PALETTE)\n", (int)font->bpp); +        qp_dprintf("qp_load_font: fail (image bpp too high (%d), check QUANTUM_PAINTER_SUPPORTS_256_PALETTE or QUANTUM_PAINTER_SUPPORTS_NATIVE_COLORS)\n", (int)font->bpp);          qp_close_font((painter_font_handle_t)font);          return NULL;      } diff --git a/quantum/painter/qp_internal_driver.h b/quantum/painter/qp_internal_driver.h index 9e9d6bc848..82a0178a73 100644 --- a/quantum/painter/qp_internal_driver.h +++ b/quantum/painter/qp_internal_driver.h @@ -16,6 +16,7 @@ typedef bool (*painter_driver_viewport_func)(painter_device_t device, uint16_t l  typedef bool (*painter_driver_pixdata_func)(painter_device_t device, const void *pixel_data, uint32_t native_pixel_count);  typedef bool (*painter_driver_convert_palette_func)(painter_device_t device, int16_t palette_size, qp_pixel_t *palette);  typedef bool (*painter_driver_append_pixels)(painter_device_t device, uint8_t *target_buffer, qp_pixel_t *palette, uint32_t pixel_offset, uint32_t pixel_count, uint8_t *palette_indices); +typedef bool (*painter_driver_append_pixdata)(painter_device_t device, uint8_t *target_buffer, uint32_t pixdata_offset, uint8_t pixdata_byte);  // Driver vtable definition  struct painter_driver_vtable_t { @@ -27,6 +28,7 @@ struct painter_driver_vtable_t {      painter_driver_pixdata_func         pixdata;      painter_driver_convert_palette_func palette_convert;      painter_driver_append_pixels        append_pixels; +    painter_driver_append_pixdata       append_pixdata;  };  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/quantum/painter/qp_internal_formats.h b/quantum/painter/qp_internal_formats.h index a4a86f0345..194f82b31a 100644 --- a/quantum/painter/qp_internal_formats.h +++ b/quantum/painter/qp_internal_formats.h @@ -44,6 +44,8 @@ typedef enum qp_image_format_t {      PALETTE_2BPP   = 0x05,      PALETTE_4BPP   = 0x06,      PALETTE_8BPP   = 0x07, +    RGB565_16BPP   = 0x08, +    RGB888_24BPP   = 0x09,  } qp_image_format_t;  typedef enum painter_compression_t { IMAGE_UNCOMPRESSED, IMAGE_COMPRESSED_RLE } painter_compression_t; diff --git a/quantum/painter/rules.mk b/quantum/painter/rules.mk index 5ac374a96e..199e406dd6 100644 --- a/quantum/painter/rules.mk +++ b/quantum/painter/rules.mk @@ -2,6 +2,8 @@  QUANTUM_PAINTER_DRIVERS ?=  QUANTUM_PAINTER_ANIMATIONS_ENABLE ?= yes +QUANTUM_PAINTER_LVGL_INTEGRATION ?= no +  # The list of permissible drivers that can be listed in QUANTUM_PAINTER_DRIVERS  VALID_QUANTUM_PAINTER_DRIVERS := \  	rgb565_surface \ @@ -152,3 +154,7 @@ ifeq ($(strip $(QUANTUM_PAINTER_NEEDS_COMMS_SPI)), yes)      endif  endif +# Check if LVGL needs to be enabled +ifeq ($(strip $(QUANTUM_PAINTER_LVGL_INTEGRATION)), yes) +	include $(QUANTUM_DIR)/painter/lvgl/rules.mk +endif diff --git a/quantum/process_keycode/process_auto_shift.c b/quantum/process_keycode/process_auto_shift.c index 35d4851ee5..aaf0cf9142 100644 --- a/quantum/process_keycode/process_auto_shift.c +++ b/quantum/process_keycode/process_auto_shift.c @@ -397,8 +397,17 @@ bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {                  break;  #    endif          } -        // If Retro Shift is disabled, possible custom actions shouldn't happen. -        // clang-format off +            // If Retro Shift is disabled, possible custom actions shouldn't happen. +            // clang-format off +#   if defined(RETRO_SHIFT) && !defined(NO_ACTION_TAPPING) +#       if defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) +            const bool is_hold_on_interrupt = get_hold_on_other_key_press(keycode, record); +#       elif defined(IGNORE_MOD_TAP_INTERRUPT) +            const bool is_hold_on_interrupt = false; +#       else +            const bool is_hold_on_interrupt = IS_QK_MOD_TAP(keycode); +#       endif +#   endif          if (IS_RETRO(keycode)  #    if defined(RETRO_SHIFT) && !defined(NO_ACTION_TAPPING)              // Not tapped or #defines mean that rolls should use hold action. @@ -407,27 +416,7 @@ bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {  #        ifdef RETRO_TAPPING_PER_KEY                  || !get_retro_tapping(keycode, record)  #        endif -                || (record->tap.interrupted && (IS_LT(keycode) -#        if defined(HOLD_ON_OTHER_KEY_PRESS) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY) -#            ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY -                    ? get_hold_on_other_key_press(keycode, record) -#            else -                    ? true -#            endif -#        else -                    ? false -#        endif -#        if defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) -#            ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY -                    : !get_ignore_mod_tap_interrupt(keycode, record) -#            else -                    : false -#            endif -#        else -                    : true -#        endif -                )) -            ) +                || (record->tap.interrupted && is_hold_on_interrupt))  #    endif          ) {              // clang-format on @@ -454,10 +443,10 @@ bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {  #    endif          ) {              // Fixes modifiers not being applied to rolls with AUTO_SHIFT_MODIFIERS set. -#    if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(IGNORE_MOD_TAP_INTERRUPT_PER_KEY) +#    if !defined(IGNORE_MOD_TAP_INTERRUPT) || defined(HOLD_ON_OTHER_KEY_PRESS_PER_KEY)              if (autoshift_flags.in_progress -#        ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY -                && !get_ignore_mod_tap_interrupt(keycode, record) +#        ifdef HOLD_ON_OTHER_KEY_PRESS_PER_KEY +                && get_hold_on_other_key_press(keycode, record)  #        endif              ) {                  autoshift_end(KC_NO, now, false, &autoshift_lastrecord); diff --git a/quantum/process_keycode/process_auto_shift.h b/quantum/process_keycode/process_auto_shift.h index 86adb04985..66a4b3138a 100644 --- a/quantum/process_keycode/process_auto_shift.h +++ b/quantum/process_keycode/process_auto_shift.h @@ -22,9 +22,8 @@  #    define AUTO_SHIFT_TIMEOUT 175  #endif -#define IS_LT(kc) ((kc) >= QK_LAYER_TAP && (kc) <= QK_LAYER_TAP_MAX) -#define IS_MT(kc) ((kc) >= QK_MOD_TAP && (kc) <= QK_MOD_TAP_MAX) -#define IS_RETRO(kc) (IS_MT(kc) || IS_LT(kc)) +#define IS_RETRO(kc) (IS_QK_MOD_TAP(kc) || IS_QK_LAYER_TAP(kc)) +  #define DO_GET_AUTOSHIFT_TIMEOUT(keycode, record, ...) record  // clang-format off  #define AUTO_SHIFT_ALPHA KC_A ... KC_Z diff --git a/quantum/process_keycode/process_leader.c b/quantum/process_keycode/process_leader.c index b74b4927a8..80bc96e65f 100644 --- a/quantum/process_keycode/process_leader.c +++ b/quantum/process_keycode/process_leader.c @@ -14,18 +14,16 @@   * along with this program.  If not, see <http://www.gnu.org/licenses/>.   */ -#ifdef LEADER_ENABLE +#include "process_leader.h" +#include <string.h> -#    include "process_leader.h" -#    include <string.h> - -#    ifndef LEADER_TIMEOUT -#        define LEADER_TIMEOUT 300 -#    endif +#ifndef LEADER_TIMEOUT +#    define LEADER_TIMEOUT 300 +#endif -__attribute__((weak)) void leader_start(void) {} +__attribute__((weak)) void leader_start_user(void) {} -__attribute__((weak)) void leader_end(void) {} +__attribute__((weak)) void leader_end_user(void) {}  // Leader key stuff  bool     leading     = false; @@ -34,52 +32,54 @@ uint16_t leader_time = 0;  uint16_t leader_sequence[5]   = {0, 0, 0, 0, 0};  uint8_t  leader_sequence_size = 0; -void qk_leader_start(void) { +void leader_start(void) {      if (leading) {          return;      } -    leader_start(); +    leader_start_user();      leading              = true;      leader_time          = timer_read();      leader_sequence_size = 0;      memset(leader_sequence, 0, sizeof(leader_sequence));  } +void leader_end(void) { +    leader_end_user(); +} +  bool process_leader(uint16_t keycode, keyrecord_t *record) {      // Leader key set-up      if (record->event.pressed) {          if (leading) { -#    ifndef LEADER_NO_TIMEOUT +#ifndef LEADER_NO_TIMEOUT              if (timer_elapsed(leader_time) < LEADER_TIMEOUT) -#    endif // LEADER_NO_TIMEOUT +#endif // LEADER_NO_TIMEOUT              { -#    ifndef LEADER_KEY_STRICT_KEY_PROCESSING +#ifndef LEADER_KEY_STRICT_KEY_PROCESSING                  if (IS_QK_MOD_TAP(keycode)) {                      keycode = QK_MOD_TAP_GET_TAP_KEYCODE(keycode);                  } else if (IS_QK_LAYER_TAP(keycode)) {                      keycode = QK_LAYER_TAP_GET_TAP_KEYCODE(keycode);                  } -#    endif // LEADER_KEY_STRICT_KEY_PROCESSING +#endif // LEADER_KEY_STRICT_KEY_PROCESSING                  if (leader_sequence_size < ARRAY_SIZE(leader_sequence)) {                      leader_sequence[leader_sequence_size] = keycode;                      leader_sequence_size++;                  } else {                      leading = false; -                    leader_end(); +                    leader_end_user();                      return true;                  } -#    ifdef LEADER_PER_KEY_TIMING +#ifdef LEADER_PER_KEY_TIMING                  leader_time = timer_read(); -#    endif +#endif                  return false;              }          } else {              if (keycode == QK_LEADER) { -                qk_leader_start(); +                leader_start();              }          }      }      return true;  } - -#endif diff --git a/quantum/process_keycode/process_leader.h b/quantum/process_keycode/process_leader.h index f3fe14a432..82b4a3ed7b 100644 --- a/quantum/process_keycode/process_leader.h +++ b/quantum/process_keycode/process_leader.h @@ -20,9 +20,11 @@  bool process_leader(uint16_t keycode, keyrecord_t *record); +void leader_start_user(void); +void leader_end_user(void); +  void leader_start(void);  void leader_end(void); -void qk_leader_start(void);  #define SEQ_ONE_KEY(key) if (leader_sequence[0] == (key) && leader_sequence[1] == 0 && leader_sequence[2] == 0 && leader_sequence[3] == 0 && leader_sequence[4] == 0)  #define SEQ_TWO_KEYS(key1, key2) if (leader_sequence[0] == (key1) && leader_sequence[1] == (key2) && leader_sequence[2] == 0 && leader_sequence[3] == 0 && leader_sequence[4] == 0) diff --git a/quantum/process_keycode/process_tap_dance.c b/quantum/process_keycode/process_tap_dance.c index 6e8e596673..fbe4ce1d33 100644 --- a/quantum/process_keycode/process_tap_dance.c +++ b/quantum/process_keycode/process_tap_dance.c @@ -18,8 +18,8 @@  static uint16_t active_td;  static uint16_t last_tap_time; -void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data; +void tap_dance_pair_on_each_tap(tap_dance_state_t *state, void *user_data) { +    tap_dance_pair_t *pair = (tap_dance_pair_t *)user_data;      if (state->count == 2) {          register_code16(pair->kc2); @@ -27,14 +27,14 @@ void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data)      }  } -void qk_tap_dance_pair_finished(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data; +void tap_dance_pair_finished(tap_dance_state_t *state, void *user_data) { +    tap_dance_pair_t *pair = (tap_dance_pair_t *)user_data;      register_code16(pair->kc1);  } -void qk_tap_dance_pair_reset(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_pair_t *pair = (qk_tap_dance_pair_t *)user_data; +void tap_dance_pair_reset(tap_dance_state_t *state, void *user_data) { +    tap_dance_pair_t *pair = (tap_dance_pair_t *)user_data;      if (state->count == 1) {          wait_ms(TAP_CODE_DELAY); @@ -44,8 +44,8 @@ void qk_tap_dance_pair_reset(qk_tap_dance_state_t *state, void *user_data) {      }  } -void qk_tap_dance_dual_role_on_each_tap(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_dual_role_t *pair = (qk_tap_dance_dual_role_t *)user_data; +void tap_dance_dual_role_on_each_tap(tap_dance_state_t *state, void *user_data) { +    tap_dance_dual_role_t *pair = (tap_dance_dual_role_t *)user_data;      if (state->count == 2) {          layer_move(pair->layer); @@ -53,8 +53,8 @@ void qk_tap_dance_dual_role_on_each_tap(qk_tap_dance_state_t *state, void *user_      }  } -void qk_tap_dance_dual_role_finished(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_dual_role_t *pair = (qk_tap_dance_dual_role_t *)user_data; +void tap_dance_dual_role_finished(tap_dance_state_t *state, void *user_data) { +    tap_dance_dual_role_t *pair = (tap_dance_dual_role_t *)user_data;      if (state->count == 1) {          register_code16(pair->kc); @@ -63,8 +63,8 @@ void qk_tap_dance_dual_role_finished(qk_tap_dance_state_t *state, void *user_dat      }  } -void qk_tap_dance_dual_role_reset(qk_tap_dance_state_t *state, void *user_data) { -    qk_tap_dance_dual_role_t *pair = (qk_tap_dance_dual_role_t *)user_data; +void tap_dance_dual_role_reset(tap_dance_state_t *state, void *user_data) { +    tap_dance_dual_role_t *pair = (tap_dance_dual_role_t *)user_data;      if (state->count == 1) {          wait_ms(TAP_CODE_DELAY); @@ -72,13 +72,13 @@ void qk_tap_dance_dual_role_reset(qk_tap_dance_state_t *state, void *user_data)      }  } -static inline void _process_tap_dance_action_fn(qk_tap_dance_state_t *state, void *user_data, qk_tap_dance_user_fn_t fn) { +static inline void _process_tap_dance_action_fn(tap_dance_state_t *state, void *user_data, tap_dance_user_fn_t fn) {      if (fn) {          fn(state, user_data);      }  } -static inline void process_tap_dance_action_on_each_tap(qk_tap_dance_action_t *action) { +static inline void process_tap_dance_action_on_each_tap(tap_dance_action_t *action) {      action->state.count++;      action->state.weak_mods = get_mods();      action->state.weak_mods |= get_weak_mods(); @@ -88,17 +88,17 @@ static inline void process_tap_dance_action_on_each_tap(qk_tap_dance_action_t *a      _process_tap_dance_action_fn(&action->state, action->user_data, action->fn.on_each_tap);  } -static inline void process_tap_dance_action_on_reset(qk_tap_dance_action_t *action) { +static inline void process_tap_dance_action_on_reset(tap_dance_action_t *action) {      _process_tap_dance_action_fn(&action->state, action->user_data, action->fn.on_reset);      del_weak_mods(action->state.weak_mods);  #ifndef NO_ACTION_ONESHOT      del_mods(action->state.oneshot_mods);  #endif      send_keyboard_report(); -    action->state = (const qk_tap_dance_state_t){0}; +    action->state = (const tap_dance_state_t){0};  } -static inline void process_tap_dance_action_on_dance_finished(qk_tap_dance_action_t *action) { +static inline void process_tap_dance_action_on_dance_finished(tap_dance_action_t *action) {      if (!action->state.finished) {          action->state.finished = true;          add_weak_mods(action->state.weak_mods); @@ -116,7 +116,7 @@ static inline void process_tap_dance_action_on_dance_finished(qk_tap_dance_actio  }  bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record) { -    qk_tap_dance_action_t *action; +    tap_dance_action_t *action;      if (!record->event.pressed) return false; @@ -139,7 +139,7 @@ bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record) {  }  bool process_tap_dance(uint16_t keycode, keyrecord_t *record) { -    qk_tap_dance_action_t *action; +    tap_dance_action_t *action;      switch (keycode) {          case QK_TAP_DANCE ... QK_TAP_DANCE_MAX: @@ -163,7 +163,7 @@ bool process_tap_dance(uint16_t keycode, keyrecord_t *record) {  }  void tap_dance_task() { -    qk_tap_dance_action_t *action; +    tap_dance_action_t *action;      if (!active_td || timer_elapsed(last_tap_time) <= GET_TAPPING_TERM(active_td, &(keyrecord_t){})) return; @@ -173,7 +173,7 @@ void tap_dance_task() {      }  } -void reset_tap_dance(qk_tap_dance_state_t *state) { +void reset_tap_dance(tap_dance_state_t *state) {      active_td = 0; -    process_tap_dance_action_on_reset((qk_tap_dance_action_t *)state); +    process_tap_dance_action_on_reset((tap_dance_action_t *)state);  } diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index d6d6c136dc..5cb6d9202c 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h @@ -31,39 +31,39 @@ typedef struct {      bool pressed : 1;      bool finished : 1;      bool interrupted : 1; -} qk_tap_dance_state_t; +} tap_dance_state_t; -typedef void (*qk_tap_dance_user_fn_t)(qk_tap_dance_state_t *state, void *user_data); +typedef void (*tap_dance_user_fn_t)(tap_dance_state_t *state, void *user_data);  typedef struct { -    qk_tap_dance_state_t state; +    tap_dance_state_t state;      struct { -        qk_tap_dance_user_fn_t on_each_tap; -        qk_tap_dance_user_fn_t on_dance_finished; -        qk_tap_dance_user_fn_t on_reset; +        tap_dance_user_fn_t on_each_tap; +        tap_dance_user_fn_t on_dance_finished; +        tap_dance_user_fn_t on_reset;      } fn;      void *user_data; -} qk_tap_dance_action_t; +} tap_dance_action_t;  typedef struct {      uint16_t kc1;      uint16_t kc2; -} qk_tap_dance_pair_t; +} tap_dance_pair_t;  typedef struct {      uint16_t kc;      uint8_t  layer;      void (*layer_function)(uint8_t); -} qk_tap_dance_dual_role_t; +} tap_dance_dual_role_t;  #    define ACTION_TAP_DANCE_DOUBLE(kc1, kc2) \ -        { .fn = {qk_tap_dance_pair_on_each_tap, qk_tap_dance_pair_finished, qk_tap_dance_pair_reset}, .user_data = (void *)&((qk_tap_dance_pair_t){kc1, kc2}), } +        { .fn = {tap_dance_pair_on_each_tap, tap_dance_pair_finished, tap_dance_pair_reset}, .user_data = (void *)&((tap_dance_pair_t){kc1, kc2}), }  #    define ACTION_TAP_DANCE_LAYER_MOVE(kc, layer) \ -        { .fn = {qk_tap_dance_dual_role_on_each_tap, qk_tap_dance_dual_role_finished, qk_tap_dance_dual_role_reset}, .user_data = (void *)&((qk_tap_dance_dual_role_t){kc, layer, layer_move}), } +        { .fn = {tap_dance_dual_role_on_each_tap, tap_dance_dual_role_finished, tap_dance_dual_role_reset}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_move}), }  #    define ACTION_TAP_DANCE_LAYER_TOGGLE(kc, layer) \ -        { .fn = {NULL, qk_tap_dance_dual_role_finished, qk_tap_dance_dual_role_reset}, .user_data = (void *)&((qk_tap_dance_dual_role_t){kc, layer, layer_invert}), } +        { .fn = {NULL, tap_dance_dual_role_finished, tap_dance_dual_role_reset}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_invert}), }  #    define ACTION_TAP_DANCE_FN(user_fn) \          { .fn = {NULL, user_fn, NULL}, .user_data = NULL, } @@ -73,11 +73,11 @@ typedef struct {  #    define TD(n) (QK_TAP_DANCE | TD_INDEX(n))  #    define TD_INDEX(code) ((code)&0xFF) -#    define TAP_DANCE_KEYCODE(state) TD(((qk_tap_dance_action_t *)state) - tap_dance_actions) +#    define TAP_DANCE_KEYCODE(state) TD(((tap_dance_action_t *)state) - tap_dance_actions) -extern qk_tap_dance_action_t tap_dance_actions[]; +extern tap_dance_action_t tap_dance_actions[]; -void reset_tap_dance(qk_tap_dance_state_t *state); +void reset_tap_dance(tap_dance_state_t *state);  /* To be used internally */ @@ -85,13 +85,13 @@ bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record);  bool process_tap_dance(uint16_t keycode, keyrecord_t *record);  void tap_dance_task(void); -void qk_tap_dance_pair_on_each_tap(qk_tap_dance_state_t *state, void *user_data); -void qk_tap_dance_pair_finished(qk_tap_dance_state_t *state, void *user_data); -void qk_tap_dance_pair_reset(qk_tap_dance_state_t *state, void *user_data); +void tap_dance_pair_on_each_tap(tap_dance_state_t *state, void *user_data); +void tap_dance_pair_finished(tap_dance_state_t *state, void *user_data); +void tap_dance_pair_reset(tap_dance_state_t *state, void *user_data); -void qk_tap_dance_dual_role_on_each_tap(qk_tap_dance_state_t *state, void *user_data); -void qk_tap_dance_dual_role_finished(qk_tap_dance_state_t *state, void *user_data); -void qk_tap_dance_dual_role_reset(qk_tap_dance_state_t *state, void *user_data); +void tap_dance_dual_role_on_each_tap(tap_dance_state_t *state, void *user_data); +void tap_dance_dual_role_finished(tap_dance_state_t *state, void *user_data); +void tap_dance_dual_role_reset(tap_dance_state_t *state, void *user_data);  #else diff --git a/quantum/process_keycode/process_ucis.c b/quantum/process_keycode/process_ucis.c index 646471bc4d..3aa09d5948 100644 --- a/quantum/process_keycode/process_ucis.c +++ b/quantum/process_keycode/process_ucis.c @@ -19,20 +19,20 @@  #include "keycode.h"  #include "wait.h" -qk_ucis_state_t qk_ucis_state; +ucis_state_t ucis_state; -void qk_ucis_start(void) { -    qk_ucis_state.count       = 0; -    qk_ucis_state.in_progress = true; +void ucis_start(void) { +    ucis_state.count       = 0; +    ucis_state.in_progress = true; -    qk_ucis_start_user(); +    ucis_start_user();  } -__attribute__((weak)) void qk_ucis_start_user(void) { +__attribute__((weak)) void ucis_start_user(void) {      register_unicode(0x2328); // ⌨  } -__attribute__((weak)) void qk_ucis_success(uint8_t symbol_index) {} +__attribute__((weak)) void ucis_success(uint8_t symbol_index) {}  static bool is_uni_seq(char *seq) {      uint8_t i; @@ -43,20 +43,20 @@ static bool is_uni_seq(char *seq) {          } else {              keycode = seq[i] - 'a' + KC_A;          } -        if (i > qk_ucis_state.count || qk_ucis_state.codes[i] != keycode) { +        if (i > ucis_state.count || ucis_state.codes[i] != keycode) {              return false;          }      } -    return qk_ucis_state.codes[i] == KC_ENTER || qk_ucis_state.codes[i] == KC_SPACE; +    return ucis_state.codes[i] == KC_ENTER || ucis_state.codes[i] == KC_SPACE;  } -__attribute__((weak)) void qk_ucis_symbol_fallback(void) { -    for (uint8_t i = 0; i < qk_ucis_state.count - 1; i++) { -        tap_code(qk_ucis_state.codes[i]); +__attribute__((weak)) void ucis_symbol_fallback(void) { +    for (uint8_t i = 0; i < ucis_state.count - 1; i++) { +        tap_code(ucis_state.codes[i]);      }  } -__attribute__((weak)) void qk_ucis_cancel(void) {} +__attribute__((weak)) void ucis_cancel(void) {}  void register_ucis(const uint32_t *code_points) {      for (int i = 0; i < UCIS_MAX_CODE_POINTS && code_points[i]; i++) { @@ -65,38 +65,38 @@ void register_ucis(const uint32_t *code_points) {  }  bool process_ucis(uint16_t keycode, keyrecord_t *record) { -    if (!qk_ucis_state.in_progress || !record->event.pressed) { +    if (!ucis_state.in_progress || !record->event.pressed) {          return true;      }      bool special = keycode == KC_SPACE || keycode == KC_ENTER || keycode == KC_ESCAPE || keycode == KC_BACKSPACE; -    if (qk_ucis_state.count >= UCIS_MAX_SYMBOL_LENGTH && !special) { +    if (ucis_state.count >= UCIS_MAX_SYMBOL_LENGTH && !special) {          return false;      } -    qk_ucis_state.codes[qk_ucis_state.count] = keycode; -    qk_ucis_state.count++; +    ucis_state.codes[ucis_state.count] = keycode; +    ucis_state.count++;      switch (keycode) {          case KC_BACKSPACE: -            if (qk_ucis_state.count >= 2) { -                qk_ucis_state.count -= 2; +            if (ucis_state.count >= 2) { +                ucis_state.count -= 2;                  return true;              } else { -                qk_ucis_state.count--; +                ucis_state.count--;                  return false;              }          case KC_SPACE:          case KC_ENTER:          case KC_ESCAPE: -            for (uint8_t i = 0; i < qk_ucis_state.count; i++) { +            for (uint8_t i = 0; i < ucis_state.count; i++) {                  tap_code(KC_BACKSPACE);              }              if (keycode == KC_ESCAPE) { -                qk_ucis_state.in_progress = false; -                qk_ucis_cancel(); +                ucis_state.in_progress = false; +                ucis_cancel();                  return false;              } @@ -110,12 +110,12 @@ bool process_ucis(uint16_t keycode, keyrecord_t *record) {                  }              }              if (symbol_found) { -                qk_ucis_success(i); +                ucis_success(i);              } else { -                qk_ucis_symbol_fallback(); +                ucis_symbol_fallback();              } -            qk_ucis_state.in_progress = false; +            ucis_state.in_progress = false;              return false;          default: diff --git a/quantum/process_keycode/process_ucis.h b/quantum/process_keycode/process_ucis.h index 3de0707762..54eb9413d4 100644 --- a/quantum/process_keycode/process_ucis.h +++ b/quantum/process_keycode/process_ucis.h @@ -31,15 +31,15 @@  typedef struct {      char *   symbol;      uint32_t code_points[UCIS_MAX_CODE_POINTS]; -} qk_ucis_symbol_t; +} ucis_symbol_t;  typedef struct {      uint8_t  count;      uint16_t codes[UCIS_MAX_SYMBOL_LENGTH];      bool     in_progress : 1; -} qk_ucis_state_t; +} ucis_state_t; -extern qk_ucis_state_t qk_ucis_state; +extern ucis_state_t ucis_state;  // clang-format off @@ -53,12 +53,12 @@ extern qk_ucis_state_t qk_ucis_state;  // clang-format on -extern const qk_ucis_symbol_t ucis_symbol_table[]; +extern const ucis_symbol_t ucis_symbol_table[]; -void qk_ucis_start(void); -void qk_ucis_start_user(void); -void qk_ucis_symbol_fallback(void); -void qk_ucis_success(uint8_t symbol_index); +void ucis_start(void); +void ucis_start_user(void); +void ucis_symbol_fallback(void); +void ucis_success(uint8_t symbol_index);  void register_ucis(const uint32_t *code_points); diff --git a/quantum/process_keycode/process_unicodemap.h b/quantum/process_keycode/process_unicodemap.h index 73f5449864..5a3aeb0000 100644 --- a/quantum/process_keycode/process_unicodemap.h +++ b/quantum/process_keycode/process_unicodemap.h @@ -22,7 +22,7 @@  #include "action.h"  #include "progmem.h" -extern const uint32_t PROGMEM unicode_map[]; +extern const uint32_t unicode_map[] PROGMEM;  uint16_t unicodemap_index(uint16_t keycode);  bool     process_unicodemap(uint16_t keycode, keyrecord_t *record); diff --git a/quantum/quantum.c b/quantum/quantum.c index e7dc71e5d7..0fe54c60a7 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -238,6 +238,14 @@ bool process_record_quantum(keyrecord_t *record) {      }  #endif +#ifdef TAP_DANCE_ENABLE +    if (preprocess_tap_dance(keycode, record)) { +        // The tap dance might have updated the layer state, therefore the +        // result of the keycode lookup might change. +        keycode = get_record_keycode(record, true); +    } +#endif +  #ifdef VELOCIKEY_ENABLE      if (velocikey_enabled() && record->event.pressed) {          velocikey_accelerate(); @@ -250,14 +258,6 @@ bool process_record_quantum(keyrecord_t *record) {      }  #endif -#ifdef TAP_DANCE_ENABLE -    if (preprocess_tap_dance(keycode, record)) { -        // The tap dance might have updated the layer state, therefore the -        // result of the keycode lookup might change. -        keycode = get_record_keycode(record, true); -    } -#endif -      if (!(  #if defined(KEY_LOCK_ENABLE)              // Must run first to be able to mask key_up events. diff --git a/quantum/rgb_matrix/animations/jellybean_raindrops_anim.h b/quantum/rgb_matrix/animations/jellybean_raindrops_anim.h index 69bf265d14..6bde60053b 100644 --- a/quantum/rgb_matrix/animations/jellybean_raindrops_anim.h +++ b/quantum/rgb_matrix/animations/jellybean_raindrops_anim.h @@ -4,7 +4,7 @@ RGB_MATRIX_EFFECT(JELLYBEAN_RAINDROPS)  static void jellybean_raindrops_set_color(int i, effect_params_t* params) {      if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) return; -    HSV hsv = {rand() & 0xFF, qadd8(rand() & 0x7F, 0x80), rgb_matrix_config.hsv.v}; +    HSV hsv = {random8(), random8_min_max(127, 255), rgb_matrix_config.hsv.v};      RGB rgb = rgb_matrix_hsv_to_rgb(hsv);      rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);  } @@ -13,7 +13,7 @@ bool JELLYBEAN_RAINDROPS(effect_params_t* params) {      if (!params->init) {          // Change one LED every tick, make sure speed is not 0          if (scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 16)) % 5 == 0) { -            jellybean_raindrops_set_color(rand() % RGB_MATRIX_LED_COUNT, params); +            jellybean_raindrops_set_color(random8_max(RGB_MATRIX_LED_COUNT), params);          }          return false;      } diff --git a/quantum/rgb_matrix/animations/pixel_flow_anim.h b/quantum/rgb_matrix/animations/pixel_flow_anim.h index 8628c3c2ec..27567b4f3a 100644 --- a/quantum/rgb_matrix/animations/pixel_flow_anim.h +++ b/quantum/rgb_matrix/animations/pixel_flow_anim.h @@ -22,7 +22,7 @@ static bool PIXEL_FLOW(effect_params_t* params) {          // Clear LEDs and fill the state array          rgb_matrix_set_color_all(0, 0, 0);          for (uint8_t j = 0; j < RGB_MATRIX_LED_COUNT; ++j) { -            led[j] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); +            led[j] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), random8_min_max(127, 255), rgb_matrix_config.hsv.v});          }      } @@ -39,7 +39,7 @@ static bool PIXEL_FLOW(effect_params_t* params) {              led[j] = led[j + 1];          }          // Fill last LED -        led[led_max - 1] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); +        led[led_max - 1] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), random8_min_max(127, 255), rgb_matrix_config.hsv.v});          // Set pulse timer          wait_timer = g_rgb_timer + interval();      } diff --git a/quantum/rgb_matrix/animations/pixel_rain_anim.h b/quantum/rgb_matrix/animations/pixel_rain_anim.h index fded60340f..9d63f451e2 100644 --- a/quantum/rgb_matrix/animations/pixel_rain_anim.h +++ b/quantum/rgb_matrix/animations/pixel_rain_anim.h @@ -1,18 +1,5 @@ -/* Copyright (C) 2021 @filterpaper - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program.  If not, see <http://www.gnu.org/licenses/>. - */ +// Copyright 2022 @filterpaper +// SPDX-License-Identifier: GPL-2.0+  #ifdef ENABLE_RGB_MATRIX_PIXEL_RAIN  RGB_MATRIX_EFFECT(PIXEL_RAIN) @@ -25,23 +12,23 @@ static bool PIXEL_RAIN(effect_params_t* params) {          return 500 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16);      } -    void rain_pixel(uint8_t i, effect_params_t * params, bool off) { -        if (!HAS_ANY_FLAGS(g_led_config.flags[i], params->flags)) { +    inline void rain_pixel(uint8_t led_index) { +        if (!HAS_ANY_FLAGS(g_led_config.flags[led_index], params->flags)) {              return;          } -        if (off) { -            rgb_matrix_set_color(i, 0, 0, 0); +        if (random8() & 2) { +            rgb_matrix_set_color(led_index, 0, 0, 0);          } else { -            HSV hsv = {random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}; +            HSV hsv = {random8(), random8_min_max(127, 255), rgb_matrix_config.hsv.v};              RGB rgb = rgb_matrix_hsv_to_rgb(hsv); -            rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b); +            rgb_matrix_set_color(led_index, rgb.r, rgb.g, rgb.b);          }          wait_timer = g_rgb_timer + interval();      }      RGB_MATRIX_USE_LIMITS(led_min, led_max);      if (g_rgb_timer > wait_timer) { -        rain_pixel(mod8(random8(), RGB_MATRIX_LED_COUNT), params, random8() & 2); +        rain_pixel(random8_max(RGB_MATRIX_LED_COUNT));      }      return rgb_matrix_check_finished_leds(led_max);  } diff --git a/quantum/rgb_matrix/animations/raindrops_anim.h b/quantum/rgb_matrix/animations/raindrops_anim.h index 6b92d649ad..e8e1f6de04 100644 --- a/quantum/rgb_matrix/animations/raindrops_anim.h +++ b/quantum/rgb_matrix/animations/raindrops_anim.h @@ -24,7 +24,7 @@ bool RAINDROPS(effect_params_t* params) {      if (!params->init) {          // Change one LED every tick, make sure speed is not 0          if (scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 16)) % 10 == 0) { -            raindrops_set_color(random8() % RGB_MATRIX_LED_COUNT, params); +            raindrops_set_color(random8_max(RGB_MATRIX_LED_COUNT), params);          }      } else {          for (int i = led_min; i < led_max; i++) { diff --git a/quantum/rgb_matrix/animations/solid_reactive_anim.h b/quantum/rgb_matrix/animations/solid_reactive_anim.h index 052bfb22fd..edf6041350 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_anim.h +++ b/quantum/rgb_matrix/animations/solid_reactive_anim.h @@ -5,7 +5,7 @@ RGB_MATRIX_EFFECT(SOLID_REACTIVE)  static HSV SOLID_REACTIVE_math(HSV hsv, uint16_t offset) {  #            ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE -    hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); +    hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4);  #            endif      hsv.h += qsub8(130, offset);      return hsv; diff --git a/quantum/rgb_matrix/animations/solid_reactive_cross.h b/quantum/rgb_matrix/animations/solid_reactive_cross.h index 9e5703a0ea..a18d6b03dd 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_cross.h +++ b/quantum/rgb_matrix/animations/solid_reactive_cross.h @@ -20,7 +20,7 @@ static HSV SOLID_REACTIVE_CROSS_math(HSV hsv, int16_t dx, int16_t dy, uint8_t di      effect += dx > dy ? dy : dx;      if (effect > 255) effect = 255;  #            ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE -    hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); +    hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4);  #            endif      hsv.v = qadd8(hsv.v, 255 - effect);      return hsv; diff --git a/quantum/rgb_matrix/animations/solid_reactive_nexus.h b/quantum/rgb_matrix/animations/solid_reactive_nexus.h index 64f5064cf9..53cc008616 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_nexus.h +++ b/quantum/rgb_matrix/animations/solid_reactive_nexus.h @@ -17,10 +17,11 @@ static HSV SOLID_REACTIVE_NEXUS_math(HSV hsv, int16_t dx, int16_t dy, uint8_t di      if (dist > 72) effect = 255;      if ((dx > 8 || dx < -8) && (dy > 8 || dy < -8)) effect = 255;  #            ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE -    hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); +    hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4) + dy / 4; +#            else +    hsv.h = rgb_matrix_config.hsv.h + dy / 4;  #            endif      hsv.v = qadd8(hsv.v, 255 - effect); -    hsv.h = rgb_matrix_config.hsv.h + dy / 4;      return hsv;  } diff --git a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h b/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h index bd3ce0817d..7f4e48747a 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h +++ b/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h @@ -5,7 +5,7 @@ RGB_MATRIX_EFFECT(SOLID_REACTIVE_SIMPLE)  static HSV SOLID_REACTIVE_SIMPLE_math(HSV hsv, uint16_t offset) {  #            ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE -    hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); +    hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4);  #            endif      hsv.v = scale8(255 - offset, hsv.v);      return hsv; diff --git a/quantum/rgb_matrix/animations/solid_reactive_wide.h b/quantum/rgb_matrix/animations/solid_reactive_wide.h index 24fedc2020..feca126648 100644 --- a/quantum/rgb_matrix/animations/solid_reactive_wide.h +++ b/quantum/rgb_matrix/animations/solid_reactive_wide.h @@ -15,7 +15,7 @@ static HSV SOLID_REACTIVE_WIDE_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dis      uint16_t effect = tick + dist * 5;      if (effect > 255) effect = 255;  #            ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE -    hsv.h = scale16by8(g_rgb_timer, add8(rgb_matrix_config.speed, 1) >> 6); +    hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4);  #            endif      hsv.v = qadd8(hsv.v, 255 - effect);      return hsv; diff --git a/quantum/rgblight/rgblight.h b/quantum/rgblight/rgblight.h index 46e8e07212..7693888462 100644 --- a/quantum/rgblight/rgblight.h +++ b/quantum/rgblight/rgblight.h @@ -68,23 +68,6 @@  |-----------------|-----------------------------------|   *****/ -#ifdef RGBLIGHT_ANIMATIONS -// for backward compatibility -#    define RGBLIGHT_EFFECT_BREATHING -#    define RGBLIGHT_EFFECT_RAINBOW_MOOD -#    define RGBLIGHT_EFFECT_RAINBOW_SWIRL -#    define RGBLIGHT_EFFECT_SNAKE -#    define RGBLIGHT_EFFECT_KNIGHT -#    define RGBLIGHT_EFFECT_CHRISTMAS -#    define RGBLIGHT_EFFECT_STATIC_GRADIENT -#    define RGBLIGHT_EFFECT_RGB_TEST -#    define RGBLIGHT_EFFECT_ALTERNATING -#endif - -#ifdef RGBLIGHT_STATIC_PATTERNS -#    define RGBLIGHT_EFFECT_STATIC_GRADIENT -#endif -  // clang-format off  // check dynamic animation effects chose ? diff --git a/quantum/rgblight/rgblight_breathe_table.h b/quantum/rgblight/rgblight_breathe_table.h index 89a3ba474c..5c7660ab6a 100644 --- a/quantum/rgblight/rgblight_breathe_table.h +++ b/quantum/rgblight/rgblight_breathe_table.h @@ -1,4 +1,4 @@ -// Copyright 2022 QMK +// Copyright 2023 QMK  // SPDX-License-Identifier: GPL-2.0-or-later  /******************************************************************************* diff --git a/quantum/split_common/transaction_id_define.h b/quantum/split_common/transaction_id_define.h index 8c19948107..18d3826b83 100644 --- a/quantum/split_common/transaction_id_define.h +++ b/quantum/split_common/transaction_id_define.h @@ -88,6 +88,10 @@ enum serial_transaction_id {      PUT_WATCHDOG,  #endif // defined(SPLIT_WATCHDOG_ENABLE) +#if defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) +    PUT_HAPTIC, +#endif // defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) +  #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER)      PUT_RPC_INFO,      PUT_RPC_REQ_DATA, diff --git a/quantum/split_common/transactions.c b/quantum/split_common/transactions.c index 527b2f4caf..8e1961b586 100644 --- a/quantum/split_common/transactions.c +++ b/quantum/split_common/transactions.c @@ -748,6 +748,48 @@ static void watchdog_handlers_slave(matrix_row_t master_matrix[], matrix_row_t s  #endif // defined(SPLIT_WATCHDOG_ENABLE) +#if defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) + +uint8_t                split_haptic_play = 0xFF; +extern haptic_config_t haptic_config; + +static bool haptic_handlers_master(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]) { +    static uint32_t           last_update = 0; +    split_slave_haptic_sync_t haptic_sync; + +    memcpy(&haptic_sync.haptic_config, &haptic_config, sizeof(haptic_config_t)); +    haptic_sync.haptic_play = split_haptic_play; + +    bool okay = send_if_data_mismatch(PUT_HAPTIC, &last_update, &haptic_sync, &split_shmem->haptic_sync, sizeof(haptic_sync)); + +    split_haptic_play = 0xFF; + +    return okay; +} + +static void haptic_handlers_slave(matrix_row_t master_matrix[], matrix_row_t slave_matrix[]) { +    memcpy(&haptic_config, &split_shmem->haptic_sync.haptic_config, sizeof(haptic_config_t)); + +    if (split_shmem->haptic_sync.haptic_play != 0xFF) { +        haptic_set_mode(split_shmem->haptic_sync.haptic_play); +        haptic_play(); +    } +} + +// clang-format off +#    define TRANSACTIONS_HAPTIC_MASTER() TRANSACTION_HANDLER_MASTER(haptic) +#    define TRANSACTIONS_HAPTIC_SLAVE() TRANSACTION_HANDLER_SLAVE(haptic) +#    define TRANSACTIONS_HAPTIC_REGISTRATIONS [PUT_HAPTIC] = trans_initiator2target_initializer(haptic_sync), +// clang-format on + +#else // defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) + +#    define TRANSACTIONS_HAPTIC_MASTER() +#    define TRANSACTIONS_HAPTIC_SLAVE() +#    define TRANSACTIONS_HAPTIC_REGISTRATIONS + +#endif // defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) +  ////////////////////////////////////////////////////  split_transaction_desc_t split_transaction_table[NUM_TOTAL_TRANSACTIONS] = { @@ -775,6 +817,7 @@ split_transaction_desc_t split_transaction_table[NUM_TOTAL_TRANSACTIONS] = {      TRANSACTIONS_ST7565_REGISTRATIONS      TRANSACTIONS_POINTING_REGISTRATIONS      TRANSACTIONS_WATCHDOG_REGISTRATIONS +    TRANSACTIONS_HAPTIC_REGISTRATIONS  // clang-format on  #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER) @@ -802,6 +845,7 @@ bool transactions_master(matrix_row_t master_matrix[], matrix_row_t slave_matrix      TRANSACTIONS_ST7565_MASTER();      TRANSACTIONS_POINTING_MASTER();      TRANSACTIONS_WATCHDOG_MASTER(); +    TRANSACTIONS_HAPTIC_MASTER();      return true;  } @@ -822,6 +866,7 @@ void transactions_slave(matrix_row_t master_matrix[], matrix_row_t slave_matrix[      TRANSACTIONS_ST7565_SLAVE();      TRANSACTIONS_POINTING_SLAVE();      TRANSACTIONS_WATCHDOG_SLAVE(); +    TRANSACTIONS_HAPTIC_SLAVE();  }  #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER) diff --git a/quantum/split_common/transport.h b/quantum/split_common/transport.h index 833633edc2..adee4470d2 100644 --- a/quantum/split_common/transport.h +++ b/quantum/split_common/transport.h @@ -114,6 +114,14 @@ typedef struct _split_slave_pointing_sync_t {  } split_slave_pointing_sync_t;  #endif // defined(POINTING_DEVICE_ENABLE) && defined(SPLIT_POINTING_ENABLE) +#if defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) +#    include "haptic.h" +typedef struct _split_slave_haptic_sync_t { +    haptic_config_t haptic_config; +    uint8_t         haptic_play; +} split_slave_haptic_sync_t; +#endif // defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE) +  #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER)  typedef struct _rpc_sync_info_t {      uint8_t checksum; @@ -192,6 +200,10 @@ typedef struct _split_shared_memory_t {      bool watchdog_pinged;  #endif // defined(SPLIT_WATCHDOG_ENABLE) +#if defined(HAPTIC_ENABLE) +    split_slave_haptic_sync_t haptic_sync; +#endif // defined(HAPTIC_ENABLE) +  #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER)      rpc_sync_info_t rpc_info;      uint8_t         rpc_m2s_buffer[RPC_M2S_BUFFER_SIZE];  | 
