-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyenv-mode.el
104 lines (81 loc) · 3.08 KB
/
pyenv-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
;;; pyenv-mode.el --- Integrate pyenv with python-mode
;; Copyright (C) 2014-2016 by Artem Malyshev
;; Author: Artem Malyshev <proofit404@gmail.com>
;; URL: https://github.com/proofit404/pyenv-mode
;; Version: 0.1.0
;; Package-Requires: ((emacs "25.1") (pythonic "0.1.0"))
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; See the README for more details.
;;; Code:
(require 'pythonic)
(defgroup pyenv nil
"Pyenv virtualenv integration with python mode."
:group 'languages)
(defcustom pyenv-mode-mode-line-format
'(:eval
(when (pyenv-mode-version)
(concat "Pyenv:" (pyenv-mode-version) " ")))
"How `pyenv-mode' will indicate the current python version in the mode line."
:group 'pyenv)
(defun pyenv-mode-version ()
"Return currently active pyenv version."
(getenv "PYENV_VERSION"))
(defun pyenv-mode-root ()
"Pyenv installation path."
(replace-regexp-in-string "\n" "" (shell-command-to-string "pyenv root")))
(defun pyenv-mode-full-path (version)
"Return full path for VERSION."
(unless (string= version "system")
(concat (pyenv-mode-root) "/versions/" version)))
(defun pyenv-mode-versions ()
"List installed python versions."
(let ((versions (shell-command-to-string "pyenv versions --bare")))
(cons "system" (split-string versions))))
(defun pyenv-mode-read-version ()
"Read virtual environment from user input."
(completing-read "Pyenv: " (pyenv-mode-versions)))
;;;###autoload
(defun pyenv-mode-set (version)
"Set python shell VERSION."
(interactive (list (pyenv-mode-read-version)))
(pythonic-activate (pyenv-mode-full-path version))
(setenv "PYENV_VERSION" version)
(force-mode-line-update))
;;;###autoload
(defun pyenv-mode-unset ()
"Unset python shell version."
(interactive)
(pythonic-deactivate)
(setenv "PYENV_VERSION")
(force-mode-line-update))
(defvar pyenv-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-s") 'pyenv-mode-set)
(define-key map (kbd "C-c C-u") 'pyenv-mode-unset)
map)
"Keymap for pyenv-mode.")
;;;###autoload
(define-minor-mode pyenv-mode
"Minor mode for pyenv interaction.
\\{pyenv-mode-map}"
:global t
:lighter ""
:keymap pyenv-mode-map
(if pyenv-mode
(if (executable-find "pyenv")
(add-to-list 'mode-line-misc-info pyenv-mode-mode-line-format)
(error "pyenv-mode: pyenv executable not found."))
(setq mode-line-misc-info
(delete pyenv-mode-mode-line-format mode-line-misc-info))))
(provide 'pyenv-mode)
;;; pyenv-mode.el ends here