emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
M-m and SPC can be used interchangeably.
- Undo -
C-/ - Redo -
C-? - Change case: 1. Camel Case :
M-c2. Upper Case :M-u
- Lower Case :
M-l
| ;; Alternative way to defeat smartparens-mode | |
| (add-hook 'evil-insert-state-entry-hook 'turn-off-smartparens-mode) | |
| (add-hook 'evil-insert-state-exit-hook 'turn-on-smartparens-mode) |
| #!/bin/sh | |
| git fetch | |
| LOCAL=$(git rev-parse @) | |
| REMOTE=$(git rev-parse @{u}) | |
| BASE=$(git merge-base @ @{u}) | |
| if [ $LOCAL = $REMOTE ]; then | |
| echo "Up-to-date" |
emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
M-m and SPC can be used interchangeably.
C-/C-?M-c
2. Upper Case : M-uM-l| # Load salsa docker commands | |
| if [ -f ~/Projects/gringo/bin/salsa_aliases.sh ]; then | |
| source ~/Projects/gringo/bin/salsa_aliases.sh | |
| fi |
| xev -event keyboard | egrep -o 'keycode.*\)' |