-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevm.el
84 lines (66 loc) · 2.45 KB
/
evm.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
;;; evm.el --- Emacs Version Manager
;; Copyright (C) 2013 Johan Andersson
;; Author: Johan Andersson <[email protected]>
;; Maintainer: Johan Andersson <[email protected]>
;; Version: 0.4.2
;; URL: http://github.com/rejeep/evm
;; Package-Requires: ((dash "2.3.0") (f "0.13.0"))
;; This file is NOT part of GNU Emacs.
;;; License:
;; 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, 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Code:
(require 'f)
(require 'dash)
(defvar evm-path
(f-expand ".evm" "~")
"Path to EVM installation.")
(defvar evm-local-path
(f-join "/" "usr" "local" "evm")
"Path to EVM installations.")
(defun evm--installation-path ()
"Path to currently selected package."
(let ((path (f-canonical (f-join evm-path "bin" "evm-emacs"))))
(if (f-exists? path)
(car (s-match (f-join evm-local-path "\\([^/]+\\)") path))
(error "No currently selected Emacs"))))
(defun evm--osx? ()
"Return true if OSX, false otherwise."
(eq system-type 'darwin))
;;;###autoload
(defun evm-find (file)
"Find FILE in the currently selected Emacs installation."
(-first-item
(f-files
(evm--installation-path)
(lambda (path)
(equal (f-filename path) file))
'recursive)))
;;;###autoload
(defun evm-emacs ()
"Return absolute path to Emacs binary."
(let ((default-directory (evm--installation-path)))
(f-expand
(if (and (evm--osx?) (f-dir? "Emacs.app"))
(f-join "Emacs.app" "Contents" "MacOS" "Emacs")
(f-join "bin" "emacs")))))
;;;###autoload
(defun evm-emacsclient ()
"Return absolute path to Emacsclient binary."
(let ((default-directory (evm--installation-path)))
(f-expand
(if (and (evm--osx?) (f-dir? "Emacs.app"))
(f-join "Emacs.app" "Contents" "MacOS" "bin" "emacsclient")
(f-join "bin" "emacsclient")))))
(provide 'evm)
;;; evm.el ends here