mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 11:09:52 +00:00
Merge pull request #45 from drrlvn/patch-1
Fix python-mode when executable is nil
This commit is contained in:
commit
6c151e7535
1 changed files with 1 additions and 1 deletions
|
@ -1241,7 +1241,7 @@ See `mode-line-percent-position'.")
|
|||
;; Versions, support Python, Ruby, Perl and Golang, etc.
|
||||
(add-hook 'python-mode-hook
|
||||
(lambda ()
|
||||
(when (and (executable-find doom-modeline-python-executable) (executable-find "cut") (executable-find "sed"))
|
||||
(when (and doom-modeline-python-executable (executable-find doom-modeline-python-executable) (executable-find "cut") (executable-find "sed"))
|
||||
(setq doom-modeline-env-command (concat doom-modeline-python-executable " --version 2>&1 | cut -d' ' -f2 | sed -n '1p'")))))
|
||||
(add-hook 'ruby-mode-hook
|
||||
(lambda ()
|
||||
|
|
Loading…
Reference in a new issue