-
Notifications
You must be signed in to change notification settings - Fork 4
/
wacs-helper.el
70 lines (55 loc) · 2.37 KB
/
wacs-helper.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
;;; wacs-helper.el --- Helper methods for wacspace -*- lexical-binding: t -*-
;; Copyright © 2013-2014 Emanuel Evans
;; Author: Emanuel Evans <[email protected]>
;; This file is not part of GNU Emacs.
;;; Commentary:
;; Useful helper functions for setting up wacspace configurations
;;; 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
;; 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 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 'wacs-util)
(require 'wacs-configuration)
(require 'dash)
;;;###autoload
(defun wacs-make-comint (name program &optional startfile &rest switches)
"Make a project-specific comint buffer.
Acts as a drop-in replacement for `make-comint' (with equivalent
arguments NAME, PROGRAM, STARTFILE, and SWITCHES). For best
results, use within `defwacspace' configurations."
(interactive)
(let ((default-directory (wacs-project-dir))
(buffer-name (concat "*" name "*<" (wacs-project-name) ">")))
(apply 'make-comint-in-buffer
(append (list name buffer-name program startfile) switches))
(make-comint-in-buffer name buffer-name program startfile switches)))
;;;###autoload
(defun wacs-eshell ()
"Open an eshell in the main project directory."
(let ((default-directory (wacs-project-dir))
(eshell-buffer-name (concat "*eshell*<"
(wacs-project-name)
">")))
(eshell)))
;;;###autoload
(defun wacs-shell ()
"Open a new shell in the main project directory."
(let ((default-directory (wacs-project-dir))
(display-buffer-alist
(cons '("\\*shell\\*" (display-buffer-same-window))
display-buffer-alist)))
(shell (concat "*shell*<" (wacs-project-name) ">"))))
(provide 'wacs-helper)
;;; wacs-helper.el ends here