emacs是否支持多列编辑?

时间:2013-07-08 04:37:37

标签: emacs text-editor

与大多数文本编辑器一样,Emacs支持从上到下进行编辑:

word1
word2
word3

但是,与Microsoft Word不同,我无法弄清楚如何编辑两列:

col1    col2
word1   word2
word3
word4

Note: Editing in the first column does not change the spacing of the second.

这可能吗?

3 个答案:

答案 0 :(得分:5)

组织模式。只需创建一个新文件,请致电M-x org-mode,然后将其粘贴到:

* Look! A table! 
| col1   |  col2.  |
| word1 |  word2 |
| word3 |              |
| word4 |              |

根据需要添加任意数量的列,这应该按照您期望的方式运行。查看org-mode的密钥绑定文档 http://orgmode.org/manual/Tables.html

答案 1 :(得分:4)

我不确定这是否符合您的要求,但您可以查看Two Column Editing

答案 2 :(得分:1)

您可能正在寻找覆盖模式。您应该可以使用insert键切换它。