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.
我想要一个 .emacs 设置,以便制表符始终由连续的空格组成。最好在每种可能的模式下。在其他编辑器中,这似乎从来都不是问题,但在 .emacs 中,恐怕我有点卡在标签上了。
将此添加到您的 .emacs 中:
(setq-default indent-tabs-mode nil)
或者你可以定义一个 before-save-hook 来消除硬标签
也有用,M-x untabify它将所有选项卡转换为当前区域中的空格。您可以使用它来删除您在indent-tabs-mode正确设置之前编辑的文件中的现有选项卡。
M-x untabify
indent-tabs-mode
C-x h (M-x mark-whole-buffer) M-x untabify