summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-02-17 12:13:35 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-02-17 12:13:35 -0800
commita411a91c6933590ee1de51a33befa983e91197bb (patch)
treeaf4e6c5b2e97edd821893f8102eaa467d5c0ea76 /emacs.d
parent[emacs] Add the notebook to the agenda for org. (diff)
downloademacs.d-a411a91c6933590ee1de51a33befa983e91197bb.tar.gz
[emacs] Fix regexp to set python-mode for aurora
Stupid regex are stupids.
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/modes/lang-python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs.d/modes/lang-python.el b/emacs.d/modes/lang-python.el
index b22ce16..582698b 100644
--- a/emacs.d/modes/lang-python.el
+++ b/emacs.d/modes/lang-python.el
@@ -1,5 +1,5 @@
 (use-package python
-  :mode ("BUILD\\|(\\.\\(py\\|aurora\\))$" . python-mode)
+  :mode ("BUILD\\|\\(\\.\\(py\\|aurora\\)\\)$" . python-mode)
   :config
   (progn
     (setq python-indent-offset 2)))