mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-17 19:17:56 -04:00
chore: formatting
This commit is contained in:
parent
213097e1ee
commit
a7288da2ee
1 changed files with 2 additions and 5 deletions
|
@ -13,7 +13,7 @@ enum custom_layers {
|
||||||
_BASE,
|
_BASE,
|
||||||
_SYM,
|
_SYM,
|
||||||
_NAV,
|
_NAV,
|
||||||
_FUN
|
_FUN,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Aliases for mappings
|
// Aliases for mappings
|
||||||
|
@ -38,7 +38,6 @@ enum custom_layers {
|
||||||
#define WORD_P C(KC_LEFT)
|
#define WORD_P C(KC_LEFT)
|
||||||
#define TMUX_ C(KC_SPC) // TMUX prefix key (Ctrl+Spc)
|
#define TMUX_ C(KC_SPC) // TMUX prefix key (Ctrl+Spc)
|
||||||
|
|
||||||
|
|
||||||
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
|
||||||
// KEYMAP //
|
// KEYMAP //
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
@ -108,7 +107,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
||||||
SEND_STRING("../");
|
SEND_STRING("../");
|
||||||
return false;
|
return false;
|
||||||
case LITERAL:
|
case LITERAL:
|
||||||
SEND_STRING("\"${}\""SS_TAP(X_LEFT)SS_TAP(X_LEFT));
|
SEND_STRING("\"${}\"" SS_TAP(X_LEFT) SS_TAP(X_LEFT));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -120,9 +119,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void matrix_scan_user(void) {
|
void matrix_scan_user(void) {
|
||||||
|
|
||||||
select_word_task();
|
select_word_task();
|
||||||
// Other tasks...
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue