2014-08-07 15:00:58 +00:00
|
|
|
;; Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
;; Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
;;
|
|
|
|
;; Author: Soonho Kong
|
|
|
|
;;
|
|
|
|
|
2014-08-14 00:02:49 +00:00
|
|
|
(require 'cl-lib)
|
|
|
|
|
|
|
|
(defun lean-concat-paths (&rest seq)
|
|
|
|
"Concatenate paths"
|
|
|
|
(cl-reduce (lambda (p1 p2) (concat (file-name-as-directory p1) p2))
|
|
|
|
seq))
|
|
|
|
|
|
|
|
(defun lean-grab-line (n)
|
2014-08-25 18:35:09 +00:00
|
|
|
"Return the contents of n-th line at the current buffer"
|
2014-08-14 00:02:49 +00:00
|
|
|
(let* ((cur-line-number (line-number-at-pos))
|
|
|
|
(rel-line-number (1+ (- n cur-line-number)))
|
|
|
|
(p1 (line-beginning-position rel-line-number))
|
|
|
|
(p2 (line-end-position rel-line-number)))
|
|
|
|
(buffer-substring-no-properties p1 p2)))
|
|
|
|
|
2014-08-07 15:00:58 +00:00
|
|
|
(defun lean-get-rootdir ()
|
2014-08-14 00:02:49 +00:00
|
|
|
(or
|
|
|
|
lean-rootdir
|
|
|
|
(error
|
|
|
|
(concat "'lean-rootdir' is not defined."
|
|
|
|
"Please have (customize-set-variable 'lean-rootdir \"~/work/lean\") "
|
|
|
|
"in your emacs configuration. "
|
|
|
|
"Also make sure that your (custom-set-variable ...) "
|
|
|
|
" comes before (require 'lean-mode)"))))
|
2014-08-07 15:00:58 +00:00
|
|
|
|
|
|
|
(defun lean-get-executable (exe-name)
|
|
|
|
"Return fullpath of lean executable"
|
2014-08-14 00:02:49 +00:00
|
|
|
(let ((lean-bin-dir-name "bin"))
|
|
|
|
(lean-concat-paths (lean-get-rootdir) lean-bin-dir-name exe-name)))
|
2014-08-07 15:00:58 +00:00
|
|
|
|
|
|
|
(provide 'lean-util)
|