*** Bindings
-The usual bindings, aside from my special case of using =C-'= in place of =C-u=. I have unbound =C-'= in org-mode.
+The usual bindings, aside from my special case of using =C-'\= in place of =C-u=. I have unbound =C-'= in org-mode.
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-c l") 'org-store-link)
*** Auto-archive
-A function to automatically archive *DONE* items in an org file. I use this as an after-save-hook header declaration as such: =\-\*\- after-save-hook: (org-auto-archive) \-\*\-=
+A function to automatically archive *DONE* items in an org file. I use this as an after-save-hook header declaration as such:
+#+BEGIN_SRC emacs-lisp :tangle no
+-*- after-save-hook: (org-auto-archive) -*-
+#+END_SRC
Also add that defun to =safe-local-variables= so that emacs will run it.
(global-set-key (kbd "C-u")'backward-kill-line)
#+END_SRC
-Since =C-u= is =universal-argument=, I put that functionality on =C-\'=.
+Since =C-u= is =universal-argument=, I put that functionality on =C-'\=.
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-'") 'universal-argument)
*** Math
General Math defuns, often used in later defuns.
-I'm tired of writing out =\'expt=, and I want to use the same notation every other programming language does.
+I'm tired of writing out =expt=, and I want to use the same notation every other programming language does.
#+BEGIN_SRC emacs-lisp
(defalias '^ 'expt)
#+END_SRC