20140327-notes
#Time-stamp:
Table of Contents
- 1 multiple-cursors
- 2 org-mode
- 3 grizzl
- 4 projectile
- 5 tags
- 6 Question: gow to better manage windows
- 7 not-much
- 8 abl-mode
- 9 Emacs configs of the group
1 multiple-cursors
1.1 mc/mark-next-like-this, for example bound to C->
2 org-mode
2.1 C-c C-e h / C-c C-e b => export to HTML
2.2 frustration with version 8, HTML export makes multi-file export
2.3 Time-stamp
2.3.1 (add-hook 'before-save-hook 'time-stamp) + #Time-stamp: <>
2.4 org-capture : quick note taking with org-mode by Florian
2.4.1 for quickly capturing ideas
2.4.2 org-capture-templates variable contains the templates
(setq org-capture-templates '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks") "* TODO %?\n %i\n %a") ("j" "Journal" entry (file+datetree "~/org/journal.org") "* %?\nEntered on %U\n %i\n %a") ("n" "Note" plain (file (concat "~/Schreiben/notes.org")) "\n%?\n\n%T\n" :kill-buffer t :prepend t :empty-lines 1)))