Browse Source

Fix auto-mode-alist regexp

pull/15/head
10sr 8 years ago
parent
commit
68618b5e17
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      emacs.el

+ 1
- 1
emacs.el View File

@@ -959,7 +959,7 @@ IF OK-IF-ALREADY-EXISTS is true force download."
;; TODO: check if this is required ;; TODO: check if this is required
(and (autoload-eval-lazily 'groovy-mode) (and (autoload-eval-lazily 'groovy-mode)
(add-to-list 'auto-mode-alist (add-to-list 'auto-mode-alist
'("build.gradle\\'" . groovy-mode)))
'("build\\.gradle\\'" . groovy-mode)))


(with-eval-after-load 'yaml-mode (with-eval-after-load 'yaml-mode
(defvar yaml-mode-map (make-sparse-keymap)) (defvar yaml-mode-map (make-sparse-keymap))


Loading…
Cancel
Save