This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
multi-term.el
774 lines (689 loc) · 28.5 KB
/
multi-term.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
;;; multi-term.el --- Managing multiple terminal buffers in Emacs.
;; Author: Andy Stewart <[email protected]>
;; Maintainer: ahei <[email protected]>
;; Copyright (C) 2008, 2009, Andy Stewart, all rights reserved.
;; Copyright (C) 2010, ahei, all rights reserved.
;; Created: <2008-09-19 23:02:42>
;; Version: 0.8.8
;; Last-Updated: <2010-05-13 00:40:24 Thursday by ahei>
;; URL: http://www.emacswiki.org/emacs/download/multi-term.el
;; Keywords: term, terminal, multiple buffer
;; Compatibility: GNU Emacs 23.2.1
;; 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 this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.
;; Features that might be required by this library:
;;
;; `term' `cl' `advice'
;;
;;; Commentary:
;;
;; This package is for creating and managing multiple terminal buffers in Emacs.
;;
;; By default, term.el provides a great terminal emulator in Emacs.
;; But I have some troubles with term-mode:
;;
;; 1. term.el just provides commands `term' or `ansi-term'
;; for creating a terminal buffer.
;; And there is no special command to create or switch
;; between multiple terminal buffers quickly.
;;
;; 2. By default, the keystrokes of term.el conflict with global-mode keystrokes,
;; which makes it difficult for the user to integrate term.el with Emacs.
;;
;; 3. By default, executing *NIX command “exit” from term-mode,
;; it will leave an unused buffer.
;;
;; 4. term.el won’t quit running sub-process when you kill terminal buffer forcibly.
;;
;; 5. Haven’t a dedicated window for debug program.
;;
;; And multi-term.el is enhanced with those features.
;;
;;; Installation:
;;
;; Copy multi-term.el to your load-path and add to your ~/.emacs
;;
;; (require 'multi-term)
;;
;; And setup program that `multi-term' will need:
;;
;; (setq multi-term-program "/bin/bash")
;;
;; or setup like me "/bin/zsh" ;)
;;
;; Below are the commands you can use:
;;
;; `multi-term' Create a new term buffer.
;; `multi-term-next' Switch to next term buffer.
;; `multi-term-prev' Switch to previous term buffer.
;; `multi-term-dedicated-open' Open dedicated term window.
;; `multi-term-dedicated-close' Close dedicated term window.
;; `multi-term-dedicated-toggle' Toggle dedicated term window.
;; `multi-term-dedicated-select' Select dedicated term window.
;;
;; Tips:
;;
;; You can type `C-u' before command `multi-term' or `multi-term-dedicated-open'
;; then will prompt you shell name for creating terminal buffer.
;;
;;; Customize:
;;
;; `multi-term-program' default is nil, so when creating new term buffer,
;; send environment variable of `SHELL' (`ESHELL', `/bin/sh') to `make-term'.
;;
;; And you can set it to your liking, like me: ;-)
;;
;; (setq multi-term-program "/bin/zsh")
;;
;; `multi-term-default-dir' default is `~/', only use when current buffer
;; is not in a real directory.
;;
;; `multi-term-buffer-name' is the name of term buffer.
;;
;; `multi-term-scroll-show-maximum-output' controls how interpreter
;; output causes window to scroll.
;;
;; `multi-term-scroll-to-bottom-on-output' controls whether interpreter
;; output causes window to scroll.
;;
;; `multi-term-switch-after-close' try to switch other `multi-term' buffer
;; after close current one.
;; If you don't like this feature just set it with nil.
;;
;; `term-unbind-key-list' is a key list to unbind some keystroke.
;;
;; `term-bind-key-alist' is a key alist that binds some keystroke.
;; If you don't like default, modify it.
;;
;; `multi-term-dedicated-window-height' the height of a dedicated term window.
;;
;; `multi-term-dedicated-max-window-height' the max height limit that dedicated
;; window is allowed.
;;
;; `multi-term-dedicated-skip-other-window-p' whether skip dedicated term
;; window when use command `other-window' to cycle windows order.
;;
;; All of the above can be customize by:
;; M-x customize-group RET multi-term RET
;;
;;; Change log:
;;
;; 2009/07/04
;; * Add new option `multi-term-dedicated-select-after-open-p'.
;;
;; 2009/06/29
;; * Fix regexp bug.
;;
;; 2009/04/21
;; * Fix a bug that bring at `2009/03/28':
;; It will kill sub-process in other multi-term buffer
;; when we kill current multi-term buffer.
;;
;; 2009/03/29
;; * Add new command `term-send-reverse-search-history'.
;;
;; 2009/03/28
;; * Add new option `multi-term-switch-after-close'.
;;
;; 2009/02/18
;; * Fix bug between ECB and `multi-term-dedicated-close'.
;;
;; 2009/02/05
;; * Prompt user shell name when type `C-u' before command
;; `multi-term' or `multi-term-dedicated-open'.
;; * Fix doc.
;;
;; 2009/01/29
;; * Use `term-quit-subjob' instead `term-interrupt-subjob'.
;; * Fix doc.
;;
;; 2009/01/13
;; * Rewrite advice for `pop-to-buffer' to avoid `pop-to-buffer' not effect
;; when have many dedicated window in current frame.
;; * Rewrite advice for `delete-other-windows' to avoid use common variable
;; `delete-protected-window-list' and use `window-dedicated-p' instead.
;; Remove variable `delete-protected-window-list' and function
;; `multi-term-dedicated-match-protected-window-p'.
;;
;; 2009/01/06
;; * Improve document.
;;
;; 2008/12/29
;; * Remove option `multi-term-current-window-height' and
;; function `multi-term-current-directory'.
;; * Add some functions to make get dedicated term buffer,
;; those functions is beginning with `multi-term-dedicated-'.
;; * Modified advice `delete-window', make command `delete-window'
;; and delete dedicated window, but will remember window height
;; before deleted.
;; * Don't remember dedicated window height if larger than max value.
;; * Fix some bug with `delete-other-windows' and window configuration.
;; And this bug exists with another extension `sr-speedbar'.
;; * Add new variable `delete-protected-window-list' for protected
;; special window that won't be deleted.
;; This variable is common for any extension that use dedicated
;; window.
;; * Fix doc.
;;
;; 2008/12/21
;; * Default bind `C-m' with `term-send-input'.
;;
;; 2008/12/10
;; * Improve customize interface.
;; * Setup customize automatically, don't need to user setup it up.
;; * Add option `multi-term-try-create'.
;; * Make function `multi-term-switch' accept offset argument.
;; * Fix doc.
;;
;; 2008/10/22
;; * Add variable `multi-term-current-window-height'.
;; * Add variable `multi-term-buffer-name'.
;; * Add variable `term-unbind-key-list'.
;; * Add variable `term-rebind-key-alist'.
;; * Move key setup and some extension from `term-extension.el'.
;; * Create new function `multi-term-keystroke-setup'.
;; * Fix doc.
;;
;; 2008/09/19
;; * First released.
;;
;;; Acknowledgments:
;;
;; Mark Triggs <[email protected]>
;; For create multi-shell.el
;; Aaron S. Hawley <[email protected]>
;; For improve document.
;;
;;; Bug
;;
;;
;;; TODO
;;
;;
;;
;;; Require:
(require 'term)
(require 'cl)
(require 'advice)
;;; Code:
;;; Customize
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Customize ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defgroup multi-term nil
"Multi term manager."
:group 'term)
(defcustom multi-term-program nil
"The program of term.
If this is nil, setup to environment variable of `SHELL'."
:type 'string
:group 'multi-term)
(defcustom multi-term-program-switches nil
"The command-line switches to pass to the term program."
:type 'string
:group 'multi-term)
(defcustom multi-term-try-create t
"Try to create a new term buffer when switch.
When use `multi-term-next' or `multi-term-prev', switch term buffer,
and try to create a new term buffer if no term buffers exist."
:type 'boolean
:group 'multi-shell)
(defcustom multi-term-default-dir "~/"
"The default directory for terms if current directory doesn't exist."
:type 'string
:group 'multi-term)
(defcustom multi-term-buffer-name "terminal"
"The buffer name of term buffer."
:type 'string
:group 'multi-term)
(defcustom multi-term-scroll-show-maximum-output nil
"*Controls how interpreter output causes window to scroll.
If non-nil, then show the maximum output when the window is scrolled.
See variable `multi-term-scroll-to-bottom-on-output'."
:type 'boolean
:group 'multi-term)
(defcustom multi-term-scroll-to-bottom-on-output nil
"*Controls whether interpreter output causes window to scroll.
If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
If `this', scroll only the selected window.
If `others', scroll only those that are not the selected window.
The default is nil.
See variable `multi-term-scroll-show-maximum-output'."
:type 'boolean
:group 'multi-term)
(defcustom multi-term-switch-after-close 'NEXT
"Try to switch other `multi-term' buffer after close current one.
If this option is 'NEXT, switch to next `multi-term' buffer;
If this option is 'PREVIOUS, switch to previous `multi-term' buffer.
If this option is nil, don't switch other `multi-term' buffer."
:type 'symbol
:group 'multi-term)
(defcustom term-unbind-key-list
'("C-z" "C-x" "C-c" "C-h" "C-y" "<ESC>")
"The key list that will need to be unbind."
:type 'list
:group 'multi-term)
(defcustom term-bind-key-alist
'(
("C-c C-c" . term-interrupt-subjob)
("C-p" . previous-line)
("C-n" . next-line)
("C-s" . isearch-forward)
("C-r" . isearch-backward)
("C-m" . term-send-raw)
("M-f" . term-send-forward-word)
("M-b" . term-send-backward-word)
("M-o" . term-send-backspace)
("M-p" . term-send-up)
("M-n" . term-send-down)
("M-M" . term-send-forward-kill-word)
("M-N" . term-send-backward-kill-word)
("M-r" . term-send-reverse-search-history)
("M-," . term-send-input)
("M-." . comint-dynamic-complete))
"The key alist that will need to be bind.
If you do not like default setup, modify it, with (KEY . COMMAND) format."
:type 'alist
:group 'multi-term)
(defcustom multi-term-dedicated-window-height 14
"The height of `multi-term' dedicated window."
:type 'integer
:group 'multi-term)
(defcustom multi-term-dedicated-max-window-height 30
"The max height limit of `multi-term' dedicated window.
Default, when hide `multi-term' dedicated window, will remember
window height before hide, except height is larger than this.`"
:type 'integer
:group 'multi-term)
(defcustom multi-term-dedicated-skip-other-window-p nil
"Default, can have `other-window' select window in cyclic ordering of windows.
In cases you don't want to select `multi-term' dedicated window, use `other-window'
and make `multi-term' dedicated window as a viewable sidebar.
So please turn on this option if you want to skip `multi-term' dedicated window with `other-window'.
Default is nil."
:type 'boolean
:set (lambda (symbol value)
(set symbol value)
(when (ad-advised-definition-p 'other-window)
(multi-term-dedicated-handle-other-window-advice value)))
:group 'multi-term)
(defcustom multi-term-dedicated-select-after-open-p nil
"Default, multi-term won't focus terminal window after you open dedicated window.
Please make this option with t if you want focus terminal window.
Default is nil."
:type 'boolean
:group 'multi-term)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Constant ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst multi-term-dedicated-buffer-name "MULTI-TERM-DEDICATED"
"The buffer name of dedicated `multi-term'.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Variable ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar multi-term-dedicated-window nil
"The dedicated `multi-term' window.")
(defvar multi-term-dedicated-buffer nil
"The dedicated `multi-term' buffer.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Interactive Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun multi-term ()
"Create new term buffer.
Will prompt you shell name when you type `C-u' before this command."
(interactive)
(let (term-buffer)
;; Set buffer.
(setq term-buffer (multi-term-get-buffer current-prefix-arg))
(set-buffer term-buffer)
;; Internal handle for `multi-term' buffer.
(multi-term-internal)
;; Switch buffer
(switch-to-buffer term-buffer)))
(defun multi-term-next (&optional offset)
"Go to the next term buffer.
If OFFSET is `non-nil', will goto next term buffer with OFFSET."
(interactive "P")
(multi-term-switch 'NEXT (or offset 1)))
(defun multi-term-prev (&optional offset)
"Go to the previous term buffer.
If OFFSET is `non-nil', will goto previous term buffer with OFFSET."
(interactive "P")
(multi-term-switch 'PREVIOUS (or offset 1)))
(defun multi-term-dedicated-open ()
"Open dedicated `multi-term' window.
Will prompt you shell name when you type `C-u' before this command."
(interactive)
(if (not (multi-term-dedicated-exist-p))
(let ((current-window (selected-window)))
(if (multi-term-buffer-exist-p multi-term-dedicated-buffer)
(unless (multi-term-window-exist-p multi-term-dedicated-window)
(multi-term-dedicated-get-window))
;; Set buffer.
(setq multi-term-dedicated-buffer (multi-term-get-buffer current-prefix-arg t))
(set-buffer (multi-term-dedicated-get-buffer-name))
;; Get dedicate window.
(multi-term-dedicated-get-window)
;; Whether skip `other-window'.
(multi-term-dedicated-handle-other-window-advice multi-term-dedicated-skip-other-window-p)
;; Internal handle for `multi-term' buffer.
(multi-term-internal))
(set-window-buffer multi-term-dedicated-window (get-buffer (multi-term-dedicated-get-buffer-name)))
(set-window-dedicated-p multi-term-dedicated-window t)
;; Select window.
(select-window
(if multi-term-dedicated-select-after-open-p
;; Focus dedicated terminal window if option `multi-term-dedicated-select-after-open-p' is enable.
multi-term-dedicated-window
;; Otherwise focus current window.
current-window)))
(message "`multi-term' dedicated window has exist.")))
(defun multi-term-dedicated-close ()
"Close dedicated `multi-term' window."
(interactive)
(if (multi-term-dedicated-exist-p)
(let ((current-window (selected-window)))
;; Remember height.
(multi-term-dedicated-select)
(multi-term-dedicated-remember-window-height)
;; Close window.
(if (and (require 'ecb nil t)
ecb-activated-window-configuration)
;; Toggle ECB window when ECB window activated.
(progn
(ecb-deactivate)
(ecb-activate))
;; Otherwise delete dedicated window.
(delete-window multi-term-dedicated-window)
(if (multi-term-window-exist-p current-window)
(select-window current-window))))
(message "`multi-term' window is not exist.")))
(defun multi-term-dedicated-remember-window-height ()
"Remember window height."
(let ((win-height (multi-term-current-window-take-height)))
(if (and (multi-term-dedicated-window-p) ;in `multi-term' window
(> win-height 1)
(<= win-height multi-term-dedicated-max-window-height))
(setq multi-term-dedicated-window-height win-height))))
(defun multi-term-dedicated-toggle ()
"Toggle dedicated `multi-term' window."
(interactive)
(if (multi-term-dedicated-exist-p)
(multi-term-dedicated-close)
(multi-term-dedicated-open)))
(defun multi-term-dedicated-select ()
"Select the `multi-term' dedicated window."
(interactive)
(if (multi-term-dedicated-exist-p)
(select-window multi-term-dedicated-window)
(message "`multi-term' window is not exist.")))
(defun term-send-backward-kill-word ()
"Backward kill word in term mode."
(interactive)
(term-send-raw-string "\C-w"))
(defun term-send-forward-kill-word ()
"Kill word in term mode."
(interactive)
(term-send-raw-string "\ed"))
(defun term-send-backward-word ()
"Move backward word in term mode."
(interactive)
(term-send-raw-string "\eb"))
(defun term-send-forward-word ()
"Move forward word in term mode."
(interactive)
(term-send-raw-string "\ef"))
(defun term-send-reverse-search-history ()
"Search history reverse."
(interactive)
(term-send-raw-string "\C-r"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Utilise Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun multi-term-internal ()
"Internal handle for `multi-term' buffer."
;; Add customize keystroke with `term-mode-hook'
(remove-hook 'term-mode-hook 'multi-term-keystroke-setup)
(add-hook 'term-mode-hook 'multi-term-keystroke-setup)
;; Load term mode
(term-mode)
(term-char-mode)
;; Handle term buffer close
(multi-term-handle-close)
;; Handle `output' variable.
(setq term-scroll-show-maximum-output multi-term-scroll-show-maximum-output
term-scroll-to-bottom-on-output multi-term-scroll-to-bottom-on-output)
;; Add hook to be sure `term' quit subjob before buffer killed.
(add-hook 'kill-buffer-hook 'multi-term-kill-buffer-hook))
(defun multi-term-get-buffer (&optional special-shell dedicated-window)
"Get term buffer.
If option SPECIAL-SHELL is `non-nil', will use shell from user input.
If option DEDICATED-WINDOW is `non-nil' will create dedicated `multi-term' window ."
(with-temp-buffer
(let ((shell-name (or multi-term-program ;shell name
(getenv "SHELL")
(getenv "ESHELL")
"/bin/sh"))
term-list-length ;get length of term list
index ;setup new term index
term-name) ;term name
(if dedicated-window
(setq term-name multi-term-dedicated-buffer-name)
;; Compute index.
(setq term-list-length (length (multi-term-list)))
(setq index (if term-list-length (1+ term-list-length) 1))
;; switch to current local directory,
;; if in-existence, switch to `multi-term-default-dir'.
(cd (or default-directory (expand-file-name multi-term-default-dir)))
;; adjust value N when max index of term buffer is less than length of term list
(while (buffer-live-p (get-buffer (format "*%s<%s>*" multi-term-buffer-name index)))
(setq index (1+ index)))
(setq term-name (format "%s<%s>" multi-term-buffer-name index)))
;; Try get other shell name if `special-shell' is non-nil.
(if special-shell
(setq shell-name (read-from-minibuffer "Run program: " shell-name)))
;; Make term, details to see function `make-term' in `term.el'.
(if multi-term-program-switches
(make-term term-name shell-name nil multi-term-program-switches)
(make-term term-name shell-name)))))
(defun multi-term-handle-close ()
"Close current term buffer when `exit' from term buffer."
(when (ignore-errors (get-buffer-process (current-buffer)))
(set-process-sentinel (get-buffer-process (current-buffer))
(lambda (proc change)
(when (string-match "\\(finished\\|exited\\)" change)
(kill-buffer (process-buffer proc)))))))
(defun multi-term-kill-buffer-hook ()
"Function that hook `kill-buffer-hook'."
(when (eq major-mode 'term-mode)
;; Quit the current subjob
;; when have alive process with current term buffer.
;; Must do this job BEFORE `multi-term-switch-after-close' action.
(when (term-check-proc (current-buffer))
;; Quit sub-process.
(term-quit-subjob))
;; Remember dedicated window height.
(multi-term-dedicated-remember-window-height)
;; Try to switch other multi-term buffer
;; when option `multi-term-switch-after-close' is non-nil.
(when multi-term-switch-after-close
(multi-term-switch-internal multi-term-switch-after-close 1))))
(defun multi-term-list ()
"List term buffers presently active."
;; Autload command `remove-if-not'.
(autoload 'remove-if-not "cl-seq")
(sort
(remove-if-not (lambda (b)
(setq case-fold-search t)
(string-match
(format "^\\\*%s<[0-9]+>\\\*$" multi-term-buffer-name)
(buffer-name b)))
(buffer-list))
(lambda (a b)
(< (string-to-number
(cadr (split-string (buffer-name a) "[<>]")))
(string-to-number
(cadr (split-string (buffer-name b) "[<>]")))))))
(defun multi-term-switch (direction offset)
"Switch `multi-term' buffers.
If DIRECTION is `NEXT', switch to the next term.
If DIRECTION `PREVIOUS', switch to the previous term.
Option OFFSET for skip OFFSET number term buffer."
(unless (multi-term-switch-internal direction offset)
(if multi-term-try-create
(progn
(multi-term)
(message "Create a new `multi-term' buffer."))
(message "Haven't any `multi-term' buffer exist."))))
(defun multi-term-switch-internal (direction offset)
"Internal `multi-term' buffers switch function.
If DIRECTION is `NEXT', switch to the next term.
If DIRECTION `PREVIOUS', switch to the previous term.
Option OFFSET for skip OFFSET number term buffer."
(let (terms this-buffer)
(setq terms (multi-term-list))
(if (consp terms)
(progn
(setf (cdr (last terms)) terms)
(setq this-buffer (position (current-buffer) (multi-term-list)))
(if this-buffer
(if (eql direction 'NEXT)
(switch-to-buffer (nth (+ this-buffer offset) terms))
(switch-to-buffer (nth (+ (- (length (multi-term-list)) offset)
this-buffer) terms)))
(switch-to-buffer (car terms)))
t)
nil)))
(defun multi-term-keystroke-setup ()
"Keystroke setup of `term-char-mode'.
By default, the key bindings of `term-char-mode' conflict with user's keystroke.
So this function unbinds some keys with `term-raw-map',
and binds some keystroke with `term-raw-map'."
(let (bind-key bind-command)
;; Unbind base key that conflict with user's keys-tokes.
(dolist (unbind-key term-unbind-key-list)
(cond
((stringp unbind-key) (setq unbind-key (read-kbd-macro unbind-key)))
((vectorp unbind-key) nil)
(t (signal 'wrong-type-argument (list 'array unbind-key))))
(define-key term-raw-map unbind-key nil))
;; Add some i use keys.
;; If you don't like my keystroke,
;; just modified `term-bind-key-alist'
(dolist (element term-bind-key-alist)
(setq bind-key (car element))
(setq bind-command (cdr element))
(cond
((stringp bind-key) (setq bind-key (read-kbd-macro bind-key)))
((vectorp bind-key) nil)
(t (signal 'wrong-type-argument (list 'array bind-key))))
(define-key term-raw-map bind-key bind-command))))
(defun multi-term-dedicated-handle-other-window-advice (activate)
"Handle advice for function `other-window'.
If ACTIVATE is `non-nil', will enable advice
`multi-term-dedicated-other-window-advice'.
Otherwise, disable it."
(if activate
(ad-enable-advice 'other-window 'after 'multi-term-dedicated-other-window-advice)
(ad-disable-advice 'other-window 'after 'multi-term-dedicated-other-window-advice))
(ad-activate 'other-window))
(defun multi-term-current-window-take-height (&optional window)
"Return the height the `window' takes up.
Not the value of `window-height', it returns usable rows available for WINDOW.
If `window' is nil, get current window."
(let ((edges (window-edges window)))
(- (nth 3 edges) (nth 1 edges))))
(defun multi-term-dedicated-get-window ()
"Get `multi-term' dedicated window."
(setq multi-term-dedicated-window
(split-window
(selected-window)
(- (multi-term-current-window-take-height) multi-term-dedicated-window-height))))
(defun multi-term-dedicated-get-buffer-name ()
"Get the buffer name of `multi-term' dedicated window."
(format "*%s*" multi-term-dedicated-buffer-name))
(defun multi-term-dedicated-exist-p ()
"Return `non-nil' if `multi-term' dedicated window exist."
(and (multi-term-buffer-exist-p multi-term-dedicated-buffer)
(multi-term-window-exist-p multi-term-dedicated-window)))
(defun multi-term-window-exist-p (window)
"Return `non-nil' if WINDOW exist.
Otherwise return nil."
(and window (window-live-p window)))
(defun multi-term-buffer-exist-p (buffer)
"Return `non-nil' if `BUFFER' exist.
Otherwise return nil."
(and buffer (buffer-live-p buffer)))
(defun multi-term-dedicated-window-p ()
"Return `non-nil' if current window is `multi-term' dedicated window.
Otherwise return nil."
(equal (multi-term-dedicated-get-buffer-name) (buffer-name (window-buffer))))
(defun multi-term-window-dedicated-only-one-p ()
"Only have one non-dedicated window."
(interactive)
(let ((window-number 0)
(dedicated-window-number 0))
(walk-windows
(lambda (w)
(with-selected-window w
(incf window-number)
(if (window-dedicated-p w)
(incf dedicated-window-number)))))
(if (and (> dedicated-window-number 0)
(= (- window-number dedicated-window-number) 1))
t nil)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Advice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defadvice delete-other-windows (around multi-term-delete-other-window-advice activate)
"This is advice to make `multi-term' avoid dedicated window deleted.
Dedicated window can't deleted by command `delete-other-windows'."
(let ((multi-term-dedicated-active-p (multi-term-window-exist-p multi-term-dedicated-window)))
(if multi-term-dedicated-active-p
(let ((current-window (selected-window)))
(dolist (win (window-list))
(when (and (window-live-p win)
(not (eq current-window win))
(not (window-dedicated-p win)))
(delete-window win))))
ad-do-it)))
(defadvice delete-window (before multi-term-delete-window-advice activate)
"Use `delete-window' delete `multi-term' dedicated window.
Have same effect as command `multi-term-dedicated-close'.
This advice to remember `multi-term' dedicated window height before deleting."
;; Remember window height before deleted.
(multi-term-dedicated-remember-window-height))
(defadvice pop-to-buffer (before multi-term-pop-to-buffer-advice activate)
"This advice fix the problem between `pop-to-buffer' and dedicated window.
By default, function `display-buffer' can't display buffer in selected window
if current window is `dedicated'.
So function `display-buffer' conflicts with `sr-speedbar' window, because
`sr-speedbar' window is a `dedicated' window.
That is to say, when current frame just have one `non-dedicated' window,
any functions that uses `display-buffer' can't split windows
to display buffer, even when the option `pop-up-windows' is enabled.
And the example function that can induce the problem is `pop-to-buffer'.
This advice will fix this problem when current frame just have one `non-dedicated' window."
(when (and pop-up-windows ;`pop-up-windows' is enable
(multi-term-window-dedicated-only-one-p) ;just have one `non-dedicated' window.
(multi-term-window-exist-p multi-term-dedicated-window)
(not (multi-term-dedicated-window-p))) ;not in `sr-speedbar' window
(split-window-vertically)
(windmove-down)))
(defadvice other-window (after multi-term-dedicated-other-window-advice)
"Default, can use `other-window' select window in cyclic ordering of windows.
But sometimes we don't want to select `sr-speedbar' window,
but use `other-window' and just make `multi-term' dedicated
window as a viewable sidebar.
This advice can make `other-window' skip `multi-term' dedicated window."
(let ((count (or (ad-get-arg 0) 1)))
(when (and (multi-term-window-exist-p multi-term-dedicated-window)
(eq multi-term-dedicated-window (selected-window)))
(other-window count))))
(provide 'multi-term)
;; Local Variables:
;; time-stamp-line-limit: 10
;; time-stamp-start: "Last-Updated: <"
;; time-stamp-end: ">"
;; End:
;;; multi-term.el ends here
;;; LocalWords: multi el dir sr Hawley eb ef cd