emacs --daemon
to run in the background.
emacsclient.emacs24 <filename/dirname>
to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
- Undo -
C-/
- Redo -
C-?
- Change case: 1. Camel Case :
M-c
2. Upper Case :M-u
- Lower Case :
M-l
(defn left-join | |
"When passed 2 rels, returns the rel corresponding to the natural | |
left-join. When passed an additional keymap, joins on the corresponding | |
keys." | |
([xrel yrel] | |
(if (and (seq xrel) (seq yrel)) | |
(let [ks (intersection (set (keys (first xrel))) | |
(set (keys (first yrel)))) | |
idx (index yrel ks)] | |
(reduce (fn [ret x] |
emacs --daemon
to run in the background.
emacsclient.emacs24 <filename/dirname>
to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/
C-?
M-c
2. Upper Case : M-u
M-l