-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: alias-to-trigger-on-load, allow-hardware-repeat, --quiet
- Add option to ignore hardware repeat events - Add abiity to execute a given alias at startup - Add a README on how to convert .adoc to .html - Add a cfg_sample for learning the Colemak layout - Add --quiet command line option
- Loading branch information
Showing
9 changed files
with
175 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
;; | ||
;; Learn Colemak, a few keys at a time. | ||
;; | ||
;; The "j" key moves around the keyboard each step, | ||
;; until you reach the full Colemak layout. | ||
;; | ||
;; To select the layout for your current step, press the | ||
;; letter "m" and the number of your current step, as a chord. | ||
;; | ||
;; Check out: https://dreymar.colemak.org/tarmak-intro.html | ||
;; and: https://colemak.com | ||
;; | ||
|
||
(defsrc | ||
q w e r t y u i o p | ||
a s d f g h j k l ; | ||
z x c v b n m | ||
) | ||
|
||
(deflayer colemak_j1 | ||
_ _ j _ _ _ _ _ _ _ | ||
_ _ _ _ _ _ n e _ _ | ||
_ _ _ _ _ k _ | ||
) | ||
|
||
(deflayer colemak_j2 | ||
_ _ f _ g _ _ _ _ _ | ||
_ _ _ t j _ n e _ _ | ||
_ _ _ _ _ k _ | ||
) | ||
|
||
(deflayer colemak_j3 | ||
_ _ f j g _ _ _ _ _ | ||
_ r s t d _ n e _ _ | ||
_ _ _ _ _ k _ | ||
) | ||
|
||
(deflayer colemak_j4 | ||
_ _ f p g j _ _ y ; | ||
_ r s t d _ n e _ o | ||
_ _ _ _ _ k _ | ||
) | ||
|
||
(deflayer colemak | ||
_ _ f p g j l u y ; | ||
_ r s t d _ n e i o | ||
_ _ _ _ _ k _ | ||
) | ||
|
||
(defcfg | ||
process-unmapped-keys yes | ||
concurrent-tap-hold yes | ||
allow-hardware-repeat no | ||
) | ||
|
||
(defchordsv2-experimental | ||
(m 1) (layer-switch colemak_j1) 300 all-released () | ||
(m 2) (layer-switch colemak_j2) 300 all-released () | ||
(m 3) (layer-switch colemak_j3) 300 all-released () | ||
(m 4) (layer-switch colemak_j4) 300 all-released () | ||
(m 5) (layer-switch colemak) 300 all-released () | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
### Converting ".adoc" to html | ||
|
||
To generate html from the these documentation files, use ["asciidoctor"](https://asciidoctor.org) | ||
(they are not fully compatible with the separate "asciidoc" project) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters