emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/markdown-mode d1d456b 1/3: Fix use-package sample configur


From: ELPA Syncer
Subject: [nongnu] elpa/markdown-mode d1d456b 1/3: Fix use-package sample configuration
Date: Mon, 5 Apr 2021 01:57:10 -0400 (EDT)

branch: elpa/markdown-mode
commit d1d456b47a7986f1e9991697869330b0597069da
Author: Shohei YOSHIDA <syohex@gmail.com>
Commit: Shohei YOSHIDA <syohex@gmail.com>

    Fix use-package sample configuration
    
    This is for avoiding overriding `README.md` configuration.
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index c46bf2e..ed367a3 100644
--- a/README.md
+++ b/README.md
@@ -79,9 +79,9 @@ example; adjust settings as desired):
 ```lisp
 (use-package markdown-mode
   :ensure t
-  :mode (("README\\.md\\'" . gfm-mode)
-         ("\\.md\\'" . markdown-mode)
-         ("\\.markdown\\'" . markdown-mode))
+  :mode (("\\.md\\'" . markdown-mode)
+         ("\\.markdown\\'" . markdown-mode)
+         ("README\\.md\\'" . gfm-mode))
   :init (setq markdown-command "multimarkdown"))
 ```
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]