瀏覽代碼

add python-mode pref

pull/1/head
10sr 12 年之前
父節點
當前提交
424fbfdcae
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. +10
    -0
      emacs.el

+ 10
- 0
emacs.el 查看文件

@@ -603,8 +603,18 @@ return nil if LIB unfound and downloading failed, otherwise the path of LIB."
(shell-command (buffer-substring-no-properties (point-at-bol)
(point))))

(add-hook 'python-mode-hook
(lambda ()
()))

(defun my-python-run-as-command ()
""
(interactive)
(shell-command (concat python-command " " buffer-file-name)))

(add-hook 'inferior-python-mode-hook
(lambda ()
(set-window-text-height (display-buffer (current-buffer) t) 7)
(define-key inferior-python-mode-map (kbd "<up>") 'comint-previous-input)
(define-key inferior-python-mode-map (kbd "<down>") 'comint-next-input)))



Loading…
取消
儲存