Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.org除了Emacs org 模式,我如何让 Emacs 打开其他文件扩展名?我在 iPad 上有一个无法处理.org文件的编辑器,所以我想使用.textorg 模式。
.org
.text
这可能是重复的,但答案很简单:
(add-to-list 'auto-mode-alist '("\\.text\\'" . org-mode))
在 .text 文件的开头添加以下行:
# -*- mode: org -*-
您也可以将其用于 .org_archive 文件
我知道这个问题很老,但我认为它稍微容易一些,并且据我所知,适用于所有类似文本的文件。