From 9027b059faebbbe25d04d0f424c8f2cfd764084b Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sun, 4 Mar 2012 19:13:38 +0900 Subject: [PATCH] use python as python-python-command when python3 is not found --- emacs.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index 3eaea86..0c9a0a7 100644 --- a/emacs.el +++ b/emacs.el @@ -155,6 +155,7 @@ read-buffer-completion-ignore-case t) (setq resize-mini-window t) (temp-buffer-resize-mode 1) +(savehist-mode 1) (fset 'yes-or-no-p 'y-or-n-p) @@ -579,7 +580,8 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB." (shell-command (buffer-substring-no-properties (point-at-bol) (point)))) -(setq python-python-command (executable-find "python3")) +(setq python-python-command (or (executable-find "python3") + (executable-find "python"))) (defun my-python-run-as-command () "" (interactive) @@ -597,7 +599,8 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB." (add-hook 'python-mode-hook (lambda () (define-key python-mode-map (kbd "C-c C-e") 'my-python-run-as-command) - (define-key python-mode-map (kbd "C-c C-b") 'my-python-display-python-buffer))) + (define-key python-mode-map (kbd "C-c C-b") 'my-python-display-python-buffer) + (define-key python-mode-map (kbd "C-m") 'newline-and-indent))) (add-hook 'inferior-python-mode-hook (lambda ()