I'm trying out use-package
- the docs say the argument to the :mode
keyword "can be a cons cell, a list, or just a string." However, I'm not sure how to make a cons cell or list work. Here's an example:
(use-package markdown-mode
:mode (list "\\.markdown\\'" "\\.md\\'"))
With that in my init-file, I get this error:
Wrong type argument: listp, list
Is that saying a list
doesn't pass the listp
test?