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.
这可能吗?
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.
这可能吗?
组织模式可以。只需创建一个新文件,调用M-x org-mode
然后将其粘贴到:
* Look! A table!
| col1 | col2. |
| word1 | word2 |
| word3 | |
| word4 | |
添加任意数量的列,这应该符合您的预期。查看 org-mode 的文档以了解键绑定。
http://orgmode.org/manual/Tables.html
我不确定这是否符合您的要求,但您可以看看Two Column Editing。
您可能正在寻找覆盖模式。您应该可以使用该insert
键切换它。