forked from emacs-helm/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helm-elscreen.el
79 lines (66 loc) · 3.03 KB
/
helm-elscreen.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
;;; helm-elscreen.el -- Elscreen support -*- lexical-binding: t -*-
;; Copyright (C) 2012 ~ 2015 Thierry Volpiatto <[email protected]>
;; 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/>.
;;; Code:
(require 'cl-lib)
(require 'helm)
(declare-function elscreen-find-screen-by-buffer "ext:elscreen.el" (buffer &optional create))
(declare-function elscreen-find-file "ext:elscreen.el" (filename))
(declare-function elscreen-goto "ext:elscreen.el" (screen))
(defun helm-find-buffer-on-elscreen (candidate)
"Open buffer in new screen, if marked buffers open all in elscreens."
(helm-require-or-error 'elscreen 'helm-find-buffer-on-elscreen)
(helm-aif (helm-marked-candidates)
(cl-dolist (i it)
(let ((target-screen (elscreen-find-screen-by-buffer
(get-buffer i) 'create)))
(elscreen-goto target-screen)))
(let ((target-screen (elscreen-find-screen-by-buffer
(get-buffer candidate) 'create)))
(elscreen-goto target-screen))))
(defun helm-elscreen-find-file (file)
(helm-require-or-error 'elscreen 'helm-elscreen-find-file)
(elscreen-find-file file))
(defvar helm-source-elscreen
'((name . "Elscreen")
(candidates
. (lambda ()
(if (cdr (elscreen-get-screen-to-name-alist))
(sort
(cl-loop for sname in (elscreen-get-screen-to-name-alist)
append (list (format "[%d] %s" (car sname) (cdr sname))))
#'(lambda (a b) (compare-strings a nil nil b nil nil))))))
(action
. (("Change Screen" .
(lambda (candidate)
(elscreen-goto (- (aref candidate 1) (aref "0" 0)))))
("Kill Screen(s)" .
(lambda (candidate)
(cl-dolist (i (helm-marked-candidates))
(elscreen-goto (- (aref i 1) (aref "0" 0)))
(elscreen-kill))))
("Only Screen" .
(lambda (candidate)
(elscreen-goto (- (aref candidate 1) (aref "0" 0)))
(elscreen-kill-others)))))))
;;;###autoload
(defun helm-elscreen ()
"Preconfigured helm to list elscreen."
(interactive)
(helm-other-buffer 'helm-source-elscreen "*Helm Elscreen*"))
(provide 'helm-elscreen)
;; Local Variables:
;; byte-compile-warnings: (not cl-functions obsolete)
;; coding: utf-8
;; indent-tabs-mode: nil
;; End:
;;; helm-elscreen.el ends here