在.csv文件中设置Emacs变量以启动组织模式

时间:2012-11-07 21:59:17

标签: emacs org-mode

如果我打开这个特殊的org-mode文件,我希望Emacs 24在.csv中启动,但是ID不起作用

data.csv

| fruit  | stock |
| apple  | 1230  |
| banana |  200  |

# 
# eval: (org-mode)
# mode: org-mode
# End:

我一定误解了文件末尾的变量机制。如果我能以同样的方式告诉Emacs 不要违反行,那就太好了。

1 个答案:

答案 0 :(得分:3)

您需要使用行Local Variables:

启动变量块
| fruit  | stock |
| apple  | 1230  |
| banana |  200  |

# Local Variables:
# eval: (org-mode)
# mode: org-mode
# End: