diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-17 12:13:35 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-17 12:13:35 -0800 |
commit | a411a91c6933590ee1de51a33befa983e91197bb (patch) | |
tree | af4e6c5b2e97edd821893f8102eaa467d5c0ea76 | |
parent | [emacs] Add the notebook to the agenda for org. (diff) | |
download | emacs.d-a411a91c6933590ee1de51a33befa983e91197bb.tar.gz |
[emacs] Fix regexp to set python-mode for aurora
Stupid regex are stupids.
-rw-r--r-- | emacs.d/modes/lang-python.el | 2 |
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))) |