2015-06-15 09:06:10 +02:00
|
|
|
;;; defuns-python.el
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun narf*anaconda-mode-doc-buffer ()
|
|
|
|
"Delete the window on escape or C-g."
|
|
|
|
(with-current-buffer (get-buffer "*anaconda-doc*")
|
|
|
|
(local-set-key [escape] 'anaconda-nav-quit)
|
|
|
|
(local-set-key [?\C-g] 'anaconda-nav-quit)))
|
|
|
|
|
2016-04-04 12:06:47 -04:00
|
|
|
;;;###autoload
|
|
|
|
(defun narf/inf-python ()
|
|
|
|
(run-python python-shell-interpreter t t))
|
|
|
|
|
2015-06-15 09:06:10 +02:00
|
|
|
(provide 'defuns-python)
|
|
|
|
;;; defuns-python.el ends here
|