2010年12月2日木曜日

python emacs でタブを 4つのスペースにする

This line did not worked (29 Jan. 2011)
(add-hook 'python-mode-hook (function (lambda () (setq indent-tabs-mode nil))))



These lines worked.
(add-hook 'python-mode-hook
                   '(lambda()
                        (setq indent-tabs-mode nil)
                        (setq indent-level 4)
                        (setq python-indent 4)
                        (setq tab-width 4)))

0 件のコメント:

コメントを投稿