Backquote in elisp
Quote, Backquote, I don’t do elisp often enough to remember how this works.
Quoting for when you want a list to be just a list:
'(This is just a list... Nothing evaluates (+ 5 6).)
Backquoting for when you want your list to be just a list except for when it should evaluate:
`(Does not evaluate (+ 3 4) but will if we add a comma before ,(+ 1 3))