1
我在this very helpful thread上說過如何在Emacs 23中這樣做,但它不起作用。縮進級別保持爲4(默認)。問:在emacs 24中將python縮進設置爲2個空格?
我在使用Emacs 24.3的Mac(MacOS 10.8)上。
我在this very helpful thread上說過如何在Emacs 23中這樣做,但它不起作用。縮進級別保持爲4(默認)。問:在emacs 24中將python縮進設置爲2個空格?
我在使用Emacs 24.3的Mac(MacOS 10.8)上。
而解決方案原來相當簡單。只是這包括在你的.emacs文件
(custom-set-variables
'(python-guess-indent nil)
'(python-indent-offset 2))
所以,這就是python-indent-offset
而非python-indent
。