modularize features

This commit is contained in:
Pablo Ontiveros 2025-08-29 12:34:11 -06:00
parent 05a14994ad
commit 82203a8a05
9 changed files with 743 additions and 694 deletions

View file

@ -0,0 +1,15 @@
#pragma once
#include QMK_KEYBOARD_H
// Custom keycodes
enum custom_keycodes {
DV_ARR = SAFE_RANGE, // Arrow function: =>
DV_CMNT, // VS Code: Toggle line comment (Ctrl+K, C)
DV_UNCMT, // VS Code: Toggle uncomment (Ctrl+K, U)
DV_SELLN, // Select entire line (Home, Home, Shift+End)
DV_REFS, // VS Code: Find all references (Ctrl+K, R)
WI_MAX, // Windows: Maximize window (Alt+Space, Shift+X)
KVM_PREV, // KVM switch: Previous computer (Ctrl, Ctrl, Page Up)
KVM_NEXT, // KVM switch: Next computer (Ctrl, Ctrl, Page Down)
};