From: Yuri Khan <yuri.v.khan@gmail.com>
To: tfed@tutamail.com
Cc: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: Re: bug#73530: GNU Emacs 29.4; Opens scripts in Markdown Mode, if the path mentions `md`
Date: Sat, 28 Sep 2024 23:44:39 +0700 [thread overview]
Message-ID: <CAP_d_8XUJQLYFAKB=T=QA8H-Y0upf152dDRg3+x6U8Zr9zoW7g@mail.gmail.com> (raw)
In-Reply-To: <O7t-Xbq--B-9@tutamail.com>
On Sat, 28 Sept 2024 at 23:27, tfed--- via Users list for the GNU
Emacs text editor <help-gnu-emacs@gnu.org> wrote:
>
> Nope, it was my mistake...
>
> I've added this extra code into my `.emacs` config:
>
> (setq auto-mode-alist
> (cons '("\.md" . markdown-mode) auto-mode-alist))
Yeah, you forgot to (1) double-escape the dot (one backslash for regex
syntax, another for string literal syntax), and (2) anchor to the end
of file name. So your regex matches any files that have any character
followed by ‘md’ anywhere in the name, rather than those ending with
the literal ‘.md’.
(setq auto-mode-alist
(cons '("\\.md\\'" . markdown-mode) auto-mode-alist))
Also that can be shortened to:
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
next prev parent reply other threads:[~2024-09-28 16:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-28 13:33 bug#73530: GNU Emacs 29.4; Opens scripts in Markdown Mode, if the path mentions `md` tfed--- via Users list for the GNU Emacs text editor
2024-09-28 14:21 ` tfed--- via Users list for the GNU Emacs text editor
2024-09-28 16:44 ` Yuri Khan [this message]
2024-09-29 7:13 ` tfed--- via Users list for the GNU Emacs text editor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAP_d_8XUJQLYFAKB=T=QA8H-Y0upf152dDRg3+x6U8Zr9zoW7g@mail.gmail.com' \
--to=yuri.v.khan@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=tfed@tutamail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.