emacs doom
C-x: press the x key while holding down the Control key M-x: press the x key while holding down the Meta key (if your computer doesn’t have a Meta key, see No Meta key) M-C-x: press the x key while holding down both Control and Meta C-M-x: a synonym for the above LFD: Linefeed or Newline; same as C-j RET: Return, sometimes marked Enter; same as C-m DEL: Delete, usually not the same as Backspace; same as C-? (see Backspace invokes help, if deleting invokes Emacs help) ESC: Escape; same as C-[ TAB: Tab; same as C-i SPC: Space bar
Useful keybindings
command | description |
M | Alt |
C | Control |
s | Super (command on macOS) |
S | Shift |
SPC | Space |
RET | Return |
Commands
exunit-mode
The exunit-mode prefix is SPC m t
. Here is some examples:
command | key / ex command | description |
---|---|---|
exunit-verify-all | SPC m t a | Runs exunit on all files |
exunit-rerun | SPC m t r | Re-runs last exunit command |
exunit-verify | SPC m t v | Runs exunit on current file |
exunit-verify-single | SPC m t s | Runs exunit for the item on cursor |
exunit-toggle-file-and-test | SPC m t t | Switch between implementation and test |
exunit-toggle-file-and-test-other-window | SPC m t T | Switch between implementation and test in other window |