我在loaded()
中做了如何在Emacs 23中做过的话,但它不起作用。缩进级别保持为4(默认值)。
我使用Emacs 24.3在Mac(MacOS 10.8)上。
答案 0 :(得分:1)
解决方案结果相当简单。只需将其包含在.emacs文件中
即可(custom-set-variables
'(python-guess-indent nil)
'(python-indent-offset 2))
所以,那是python-indent-offset
而不是python-indent
。