* NUBS_Z: initial version Create a keycode that is normally Z, but KC_NUBS when tapped while Alt is being held. This removes the possibility of using an Alt+Z shortcut. * NUBS_Z: modification Modify NUBS_Z macro to only use alternate operation if Right Alt is being held, rather than responding to either Alt key. Also add QMK version keycode to System layer, Equals key. * Remove unneeded breaks from process_record_user * Macro refactoring - removed G_RST and G_C10R macros - updated G_BRCH macro - outputs `master` if used while Shift is held down; or my git alias for the current branch otherwise - updated G_FTCH macro - outputs `git pull upstream ` if used with Shift; `git fetch upstream ` otherwise - swapped `modifiers` variable for `get_mods()` function directly for checking modifier state - swapped keymap-level modifier mask macros for QMK-core mod mask macros (thanks vomindoraan #4337) - renamed MODS_RALT_MASK to MOD_MASK_RALT (more consistent with the above change) * Update readme files
3.9 KiB
@noroadsleft's KC60 keymap
Layer 10: Numpad layer - _NP
Accessed by holding either Fn
key and tapping Space
, from any of the Base Layers
Puts a Numpad on the right-hand side of the keyboard. A through F included for hexadecimal input. Tapping Space
returns to the previous Base Layer.
Layer 11: Macro layer - _MA
Accessed by holding the Fn
key and tapping the right-side Win
key
Has some macros that I use in Git, and some frequently-typed strings.
Tapping Esc
exits the Macro layer, if the macro used doesn't do it automatically.
Macros
T_L3DED
Output: lavak3DED
Twitch emote for a streamer I watch a lot.
G_PUSH
Output: git push origin
Everything from here down is related to Git or GitHub.
G_FTCH
Condition | Output |
---|---|
If Shift is active | git pull upstream |
Otherwise | git fetch upstream |
G_COMM
Output: git commit -m ""
Left
Readies a git commit
command, moves the cursor between the quotation marks, then disables the Macro layer.
G_BRCH
Condition | Output |
---|---|
If Shift is active | master |
Otherwise | $(git branch-name) |
$(git branch-name)
is a git alias that returns the name of the current branch. This macro disables the Macro layer when finished.
SIGNA
Output: \- @noroadsleft
Enter
Sometimes on GitHub, I sign my comments. Types my GitHub name in Markdown syntax, and then taps the Enter
key. Disables the Macro layer when finished.
MC_UNDO
Condition | Output |
---|---|
If Shift is active | Shift + Command + Z |
Otherwise | Command + Z |
An Undo shortcut that turns to Redo if Shift is being held. I'm not sure that part is required to get that behavior, but it works as desired, so I'm not messing with it.
MC_PSTE
Condition | Output |
---|---|
If Shift is active | Shift + Command + Option + V |
Otherwise | Command + V |
The program I use this in uses Shift + Command + Option + V to paste while maintaining formatting (typeface, text size, etc.). Sometimes I want this and sometimes I don't. Using Shift changes the behavior.
NUBS_Z
Condition | Output |
---|---|
If Right Alt is active | KC_NUBS |
Otherwise | KC_Z |
Sometimes I type in languages from countries that use ISO layout, but my keyboard is ANSI, so I have one key fewer. This macro simulates the Non-US Backslash key if I use Right Alt + Z.
VRSN
Outputs a string that tells me the Git commit from which my flashed firmware was built. Looks something like:
kc60/noroadsleft @ 0.6.240-20-ge91549-dirty
Layer 12: System layer - _SY
Accessed by holding either Fn
key and tapping the /?
key
This is where I change my keyboard function. Base layer select on 1
through 3
, Backlight controls on C
through N
, Reset on 8*
, Debug on 0)
.