]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
Whitespace changes and a new comment in auto-modes.el.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 25 Feb 2012 20:01:11 +0000 (15:01 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 25 Feb 2012 20:01:11 +0000 (15:01 -0500)
auto-modes.el

index da87ef889929ba959c1f517478e48c40c24823ec..7f42af0194392917cc0e6cbc63ef9327e8f061a3 100644 (file)
@@ -1,22 +1,22 @@
 (setq auto-mode-alist
       (append
        (list
-       
+
        ;; apache-mode
-       '("\\.htaccess$"   . apache-mode)
-       '("httpd\\.conf$"  . apache-mode)
-       '("srm\\.conf$"    . apache-mode)
-       '("access\\.conf$" . apache-mode)
-       '("apache[12]\?\\.conf$" . apache-mode)
+       '("\\.htaccess$"               . apache-mode)
+       '("httpd\\.conf$"              . apache-mode)
+       '("srm\\.conf$"                . apache-mode)
+       '("access\\.conf$"             . apache-mode)
+       '("apache[12]\?\\.conf$"       . apache-mode)
        '("commonapache[12]\?\\.conf$" . apache-mode)
 
        ;; basic-mode
        '("\\.class\\.asp$" . basic-mode)
-       '("\\.vbs$" . basic-mode)
-       
+       '("\\.vbs$"         . basic-mode)
+
        ;; csharp-mode
        '("\\.ascx$" . csharp-mode)
-       '("\\.cs$" . csharp-mode)
+       '("\\.cs$"   . csharp-mode)
 
        ;; css-mode
        '("\\.css$" . css-mode)
 
        ;; haskell-mode
        '("\\.l?hs$" . haskell-mode)
-       
+
        ;; nagios-mode
        '("\\.cfg$" . nagios-mode)
 
        ;; nxml-mode
-       '("\\.asp$" . nxml-mode)
-       '("\\.aspx$" . nxml-mode)
-       '("\\.xml$" . nxml-mode)
-       '("\\.?html$" . nxml-mode)
+       '("\\.asp$"    . nxml-mode)
+       '("\\.aspx$"   . nxml-mode)
+       '("\\.xml$"    . nxml-mode)
+       '("\\.?html$"  . nxml-mode)
        '("\\.config$" . nxml-mode)
-       '("\\.tpl$" . nxml-mode) ;; Smarty templates
-       '("\\.rdf$" . nxml-mode)
-       '("\\.xul$" . nxml-mode)
-                              
+       '("\\.tpl$"    . nxml-mode) ;; Smarty templates
+       '("\\.rdf$"    . nxml-mode)
+       '("\\.xul$"    . nxml-mode)
+
        ;; php-mode
-       '("\\.php$" . php-mode)
+       '("\\.php$"    . php-mode)
        '("\\.module$" . php-mode) ;; Drupal modules
-                              
+
        ;; python-mode
        '("\\.pyx?$" . python-mode)
 
        ;; ruby-mode
        '("\\.rake$" . ruby-mode)
-       '("\\.rb$" . ruby-mode)
+       '("\\.rb$"   . ruby-mode)
 
+       ;; Perhaps surprisingly, I do not use Emacs as my PDF viewer.
        '("\\.pdf$" . fundamental-mode)
        )
-                             
+
        auto-mode-alist))