Who | Cherry MX Blue | Cherry MX Brown | Cherry MX Clear | Ruberdome crap |
---|---|---|---|---|
@to1ne | Ergodox 2 v7T12 | Truly Ergonomic 207 | ||
@LennyDonnez | DAS Keyboard | |||
@lewisfidlers | POK3R (white) | |||
@nathan_de_witte | [[https://www.microsoft.com/hard |
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
# | |
# A little function to add html markup around emacs commands found in text. | |
# | |
def markup_emacs(text) | |
# defuns are put between () # TODO nested defuns | |
text.gsub!(/(\([^\)]+\))/, '<code>\1</code>') | |
# keyboard strokes | |
# -> M-x some-defun | |
# -> and other combo's | |
key = '(?:<[^&]+>|\w\b|[^\s\w])' |