Skip to content

Commit

Permalink
fix: errors 2
Browse files Browse the repository at this point in the history
  • Loading branch information
shotaCoffee committed Dec 9, 2024
1 parent 333821b commit 97ec1b4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 132 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,79 +360,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
wait_ms(130); // 0.1秒(1300ミリ秒)待機
tap_code(KC_RIGHT);
}

// KC_RIGHT を送信
// if (keycode == COMBO_select_BRC || keycode == COMBO_select_S9_S0) {
// wait_ms(100); // 1秒(1000ミリ秒)待機
// tap_code(KC_RIGHT);
// }

// if (keycode == COMBO_select_BRC) {
// if (keycode == COMBO_select_BRC) {
// tap_code16(G(KC_X)); // カット
// tap_code(KC_LBRC); // 「 を送信

// // かなの場合にKC_ENTを送信
// if (is_kana) {
// tap_code(KC_ENT);
// }

// tap_code16(G(KC_V)); // ペースト
// wait_ms(1000); // 1秒(1000ミリ秒)待機

// tap_code(KC_RBRC); // 」 を送信

// // かなの場合にKC_ENTを送信
// if (is_kana) {
// tap_code(KC_ENT);
// }
// }
// }
}
return false;

// karabinerでのコンボ用
// case CUSTOM_S9:
// if (record->event.pressed) {
// register_code(KC_LSFT);
// register_code(KC_9);
// } else {
// unregister_code(KC_9);
// unregister_code(KC_LSFT);
// }
// return false;
// case CUSTOM_S0:
// if (record->event.pressed) {
// register_code(KC_LSFT);
// register_code(KC_0);
// } else {
// unregister_code(KC_0);
// unregister_code(KC_LSFT);
// }
// return false;

// case select_BRC: {
// if (record->event.pressed) {
// register_code16(G(KC_X));
// register_code(KC_LBRC);
// register_code(KC_ENT);
// register_code16(G(KC_V));
// register_code(KC_RBRC);
// register_code(KC_ENT);
// } else {
// }
// return false;
// }

// case CMD_SCRL: {
// if (record->event.pressed) {
// register_code16(G(SCRL_MO));
// } else {
// unregister_code16(G(SCRL_MO));
// }
// return false;
// }

// 以下スワイプジェスチャー
// クリックすると state が SWIPE になり、離したら NONE になる
case CMD_T(KC_SPACE):
Expand Down Expand Up @@ -466,66 +396,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
}

// MOD系
// case KC_LCMD:
// case KC_LALT:
// if (record->event.pressed)
// {
// // キーダウン時
// state = SWIPE;
// register_code(keycode);
// }
// else
// {
// // キーアップ時
// clear_mods();
// disable_click_layer();
// is_repeat = false;
// }
// return false;

// TAP系
// case KC_F:
// case KC_D:
// case KC_S:
// uint16_t alt_tab_timer = 0;

// TAP系(キーリピートあり)
// case LT(2, KC_ESC):
// if (record->event.pressed)
// {
// // キーダウン時
// state = SWIPE;
// tap_code(keycode);
// }
// else
// {
// // キーアップ時
// if (is_swiped == true)
// {
// tap_code(KC_BSPC);
// }
// disable_click_layer();
// is_repeat = false;
// is_swiped = false;
// }
// return false;

// TAP系(フリック風)
// case KC_S:
// if (record->event.pressed)
// {
// // キーダウン時
// state = SWIPE;
// tap_code(keycode);
// }
// else
// {
// // キーアップ時
// disable_click_layer();
// }
// return false;

// その他のキーコードの場合
default:
if (record->event.pressed) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

#include "features/swipe_gesture.h"
#include "features/auto_click_layer.h"
#include "features/macro_keys.h"
//#include "features/macro_keys.h"

// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OLED_ENABLE = yes

VIA_ENABLE = yes

COMBO_ENABLE = yes
# COMBO_ENABLE = yes

# ファームウェアのサイズを削減
EXTRAFLAGS += -flto
Expand Down

0 comments on commit 97ec1b4

Please sign in to comment.