2015-12-17 01:07:45 +01:00
|
|
|
;;; oni-eshell.el --- Extra Eshell commands and functions -*- lexical-binding: t; -*-
|
2015-12-16 22:09:03 +01:00
|
|
|
|
|
|
|
;; Copyright (C) 2015 Tom Willemse
|
|
|
|
|
|
|
|
;; Author: Tom Willemse <tom@ryuslash.org>
|
|
|
|
;; Keywords:
|
|
|
|
|
|
|
|
;; 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:
|
|
|
|
|
2015-12-17 01:07:45 +01:00
|
|
|
;; Here are some extra commands and functions for eshell.
|
2015-12-16 22:09:03 +01:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'em-dirs)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun eshell/cdp ()
|
|
|
|
"Change the directory all the way up to the project root.
|
|
|
|
|
|
|
|
Look for the project root and change the directory to it. The
|
|
|
|
project root is defined as the directory with the `.git'
|
|
|
|
directory in it."
|
|
|
|
(let ((project-dir (locate-dominating-file "." ".git")))
|
|
|
|
(if project-dir
|
|
|
|
(eshell/cd project-dir)
|
|
|
|
(error "Can't locate project root"))))
|
|
|
|
|
2015-12-17 01:07:45 +01:00
|
|
|
;;;###autoload
|
|
|
|
(defun oni:eshell-buttonize-url ()
|
|
|
|
"Turn every URL into a clickable button."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char eshell-last-output-start)
|
|
|
|
(while (re-search-forward
|
|
|
|
"https?://[^ \n]+" eshell-last-output-end :noerror)
|
|
|
|
(make-button (match-beginning 0) (match-end 0)
|
|
|
|
'action (lambda (button)
|
|
|
|
(browse-url (button-label button)))))))
|
|
|
|
|
2015-12-16 22:09:03 +01:00
|
|
|
(provide 'oni-eshell)
|
|
|
|
;;; oni-eshell.el ends here
|