summaryrefslogtreecommitdiff
path: root/users/kuatsure/kuatsure.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-04-09 08:57:19 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-09 08:57:19 -0700
commit6baec0fffdc1e48d228dfc0a73b98a4ecf6d4caf (patch)
treeeff7483e3e82b9dcb249c03ec2bb457e58df04df /users/kuatsure/kuatsure.c
parent23a52e40b384199b1146f534aac1c3b83fcaa993 (diff)
Remove Userspace folders
Diffstat (limited to 'users/kuatsure/kuatsure.c')
-rw-r--r--users/kuatsure/kuatsure.c111
1 files changed, 0 insertions, 111 deletions
diff --git a/users/kuatsure/kuatsure.c b/users/kuatsure/kuatsure.c
deleted file mode 100644
index a18713626e..0000000000
--- a/users/kuatsure/kuatsure.c
+++ /dev/null
@@ -1,111 +0,0 @@
-#include "kuatsure.h"
-
-void tmux_prefix(void) {
- register_code(KC_LCTL);
- register_code(KC_SPC);
-
- unregister_code(KC_LCTL);
- unregister_code(KC_SPC);
-}
-
-void tmux_pane_zoom(void) {
- tmux_prefix();
-
- register_code(KC_Z);
- unregister_code(KC_Z);
-}
-
-void tmux_pane_switch(uint16_t keycode) {
- tmux_prefix();
-
- register_code(KC_Q);
- unregister_code(KC_Q);
-
- register_code(keycode);
- unregister_code(keycode);
-}
-
-void tmux_window_switch(uint16_t keycode) {
- tmux_prefix();
-
- register_code(keycode);
- unregister_code(keycode);
-}
-
-LEADER_EXTERNS();
-void matrix_scan_user(void) {
- LEADER_DICTIONARY() {
- leading = false;
- leader_end();
-
- // Available seqs
- // SEQ_ONE_KEY, SEQ_TWO_KEYS, SEQ_THREE_KEYS
- // anything you can do in a macro https://docs.qmk.fm/macros.html
- // https://docs.qmk.fm/feature_leader_key.html
-
- // Whole Screen Shot
- SEQ_ONE_KEY(KC_A) {
- register_code(KC_LGUI);
- register_code(KC_LSFT);
- register_code(KC_3);
-
- unregister_code(KC_3);
- unregister_code(KC_LSFT);
- unregister_code(KC_LGUI);
- }
-
- // Selective Screen Shot
- SEQ_ONE_KEY(KC_S) {
- register_code(KC_LGUI);
- register_code(KC_LSFT);
- register_code(KC_4);
-
- unregister_code(KC_4);
- unregister_code(KC_LSFT);
- unregister_code(KC_LGUI);
- }
-
- // TMUX - shift to pane 1 and zoom
- SEQ_ONE_KEY(KC_J) {
- tmux_pane_switch(KC_1);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to pane 2 and zoom
- SEQ_ONE_KEY(KC_K) {
- tmux_pane_switch(KC_2);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to pane 3 and zoom
- SEQ_ONE_KEY(KC_L) {
- tmux_pane_switch(KC_3);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to last pane and zoom
- SEQ_ONE_KEY(KC_SCOLON) {
- tmux_prefix();
-
- register_code(KC_SCOLON);
- unregister_code(KC_SCOLON);
-
- tmux_pane_zoom();
- }
-
- // TMUX - shift to first window
- SEQ_ONE_KEY(KC_U) {
- tmux_window_switch(KC_1);
- }
-
- // TMUX - shift to second window
- SEQ_ONE_KEY(KC_I) {
- tmux_window_switch(KC_2);
- }
-
- // TMUX - shift to third window
- SEQ_ONE_KEY(KC_O) {
- tmux_window_switch(KC_3);
- }
- }
-}