From bf2b15868a5824399f8de3192321953b126e3f95 Mon Sep 17 00:00:00 2001 From: sajenim Date: Mon, 5 Feb 2024 10:59:32 +0800 Subject: [PATCH] verbose comments --- keyboards/crkbd/keymaps/sajenim/layers.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/keyboards/crkbd/keymaps/sajenim/layers.h b/keyboards/crkbd/keymaps/sajenim/layers.h index 43ffd2d..58efe29 100644 --- a/keyboards/crkbd/keymaps/sajenim/layers.h +++ b/keyboards/crkbd/keymaps/sajenim/layers.h @@ -1,10 +1,10 @@ -/* Layers */ - +// Our super useful layers, why we run qmk exclusively. enum layers { - L_CANARY, - L_LOWER, - L_UPPER, - L_ADJUST, - L_EXTEND, + L_CANARY, // This layout is the result of collaboration between many of the top layout creators from the AKL community. + L_LOWER, // OLKB naming convention, Contains our numpad and function keys. + L_RAISE, // OLKB naming convention, Contains our symbols. + L_ADJUST, // OLKB naming convention, Contains keyboard related settings. + L_EXTEND, // From the colemak community, Brings navigation and editing to the home position. + L_MACRO, // Extra extend functions, Brings mouse keys to the home position and contains our macros. };