Skip to content

Commit

Permalink
Use cmd-left and cmd-right instead of ctrl-a and ctrl-e for home and end
Browse files Browse the repository at this point in the history
The ctrl commands only seem to work well in terminal, not in other apps.
  • Loading branch information
markspanbroek authored and jackhumbert committed Aug 21, 2017
1 parent 1ab9e5d commit 36709d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboards/satan/keymaps/mark1/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#define KC_____ KC_TRNS
#define KC_FN MO(1) // Fn
#define KC_FNLK TG(1) // Fn lock
#define KC_HOME LCTL(KC_A) // Home, or ctrl-a
#define KC_END LCTL(KC_E) // End, or ctrl-e
#define KC_HOME LGUI(KC_LEFT) // Home, or cmd-left
#define KC_END LGUI(KC_RGHT) // End, or cmd-right
#define KC_SLP LGUI(LALT(KC_POWER)) // sleep, or cmd-option-power
#define KC_SCLK LCTL(LSFT(KC_POWER)) // lock screen, or ctrl-shift-power

Expand Down

0 comments on commit 36709d6

Please sign in to comment.