mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 11:30:23 +10:00
Moving to Doom Emacs!
This commit is contained in:
30
.emacs.d/modules/lang/python/autoload/pyenv.el
Normal file
30
.emacs.d/modules/lang/python/autoload/pyenv.el
Normal file
@@ -0,0 +1,30 @@
|
||||
;;; lang/python/autoload/pyenv.el -*- lexical-binding: t; -*-
|
||||
;;;###if (featurep! +pyenv)
|
||||
|
||||
;;;###autoload
|
||||
(defvar +pyenv--version nil)
|
||||
|
||||
;;;###autoload
|
||||
(defun +python-pyenv-mode-set-auto-h ()
|
||||
"Set pyenv-mode version from buffer-local variable."
|
||||
(when (eq major-mode 'python-mode)
|
||||
(when (not (local-variable-p '+pyenv--version))
|
||||
(make-local-variable '+pyenv--version)
|
||||
(setq +pyenv--version (+python-pyenv-read-version-from-file)))
|
||||
(if +pyenv--version
|
||||
(pyenv-mode-set +pyenv--version)
|
||||
(pyenv-mode-unset))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +python-pyenv-read-version-from-file ()
|
||||
"Read pyenv version from .python-version file."
|
||||
(when-let (root-path (projectile-locate-dominating-file default-directory ".python-version"))
|
||||
(let* ((file-path (expand-file-name ".python-version" root-path))
|
||||
(version
|
||||
(with-temp-buffer
|
||||
(insert-file-contents-literally file-path)
|
||||
(string-trim (buffer-string)))))
|
||||
(if (member version (pyenv-mode-versions))
|
||||
version ;; return.
|
||||
(message "pyenv: version `%s' is not installed (set by `%s')."
|
||||
version file-path)))))
|
||||
Reference in New Issue
Block a user