]> code.delx.au - gnu-emacs-elpa/blob - packages/multishell/multishell.el
Merged from upstream with StefanM's changes
[gnu-emacs-elpa] / packages / multishell / multishell.el
1 ;;; multishell.el --- facilitate multiple local and remote shell buffers
2
3 ;; Copyright (C) 1999-2016 Free Software Foundation, Inc. and Ken Manheimer
4
5 ;; Author: Ken Manheimer <ken.manheimer@gmail.com>
6 ;; Version: 1.0.8
7 ;; Created: 1999 -- first public availability
8 ;; Keywords: processes
9 ;; URL: https://github.com/kenmanheimer/EmacsMultishell
10 ;;
11 ;;; Commentary:
12 ;;
13 ;; Easily use and navigate multiple shell buffers, including remote shells.
14 ;; Fundamentally, multishell is the function `multishell-pop-to-shell' -
15 ;; a la `pop-to-buffer' - plus a keybinding. Together, they enable you to:
16 ;;
17 ;; * Get to the input point from wherever you are in a shell buffer,
18 ;; ... or to any of your shell buffers, from anywhere inside emacs.
19 ;;
20 ;; * Use universal arguments to launch and choose among alternate shell buffers,
21 ;; ... and change which is the current default.
22 ;;
23 ;; * Easily restart disconnected shells, or shells from prior sessions
24 ;; ... the latter from Emacs builtin savehist minibuf history persistence
25 ;;
26 ;; * Append a path to a new shell name to launch a shell in that directory,
27 ;; ... and use a path with Emacs tramp syntax to launch a remote shell -
28 ;; for example:
29 ;;
30 ;; * `#root/sudo:root@localhost:/etc` for a buffer named "*#root*" with a
31 ;; root shell starting in /etc.
32 ;;
33 ;; * `/ssh:example.net:` for a shell buffer in your homedir on example.net.
34 ;; The buffer will be named "*example.net*".
35 ;;
36 ;; * `#ex/ssh:example.net|sudo:root@example.net:/var/log` for a root shell
37 ;; starting in /var/log on example.net named "*#ex*".
38 ;;
39 ;; * 'interior/ssh:gateway.corp.com|ssh:interior.corp.com:' to go via
40 ;; gateway.corp.com to your homedir on interior.corp.com. The buffer
41 ;; will be named "*interior*". You could append a sudo hop, and so on.
42 ;;
43 ;; * Thanks to tramp, file visits from the shell will seamlessly be in
44 ;; the auspices of the target account, and relative to the current
45 ;; directory, on the host where the shell is running.
46 ;;
47 ;; See the `multishell-pop-to-shell` docstring for details.
48 ;;
49 ;; Customize-group `multishell' to select and activate a keybinding and set
50 ;; various behaviors. Customize-group `savehist' to preserve buffer
51 ;; names/paths across emacs restarts.
52 ;;
53 ;; Please use
54 ;; [the multishell repository](https://github.com/kenmanheimer/EmacsMultishell)
55 ;; issue tracker to report problems, suggestions, etc, and see that
56 ;; repository for a bit more documentation.
57 ;;
58 ;; Change Log:
59 ;;
60 ;; * 2016-01-24 1.0.8 Ken Manheimer:
61 ;; - Work around the shell/tramp mishandling of remote+sudo+homedir problem!
62 ;; The work around is clean and simple, basically using high-level `cd'
63 ;; API and not messing with the low-level default-directory setting.
64 ;; (Turns out the problem was not in my local config. Good riddance to the
65 ;; awkward failure handler!)
66 ;; - Clean up code resolving the destination shell, starting to document the
67 ;; decision tree in the process. See getting-to-a-shell.md in the
68 ;; multishell repository, https://github.com/kenmanheimer/EmacsMultishell
69 ;; - There may be some shake-out on resolving the destination shell, but
70 ;; this release gets the fundamental functionality soundly in place.
71 ;; * 2016-01-23 1.0.7 Ken Manheimer:
72 ;; - Remove notes about tramp remote+sudo+homedir problem. Apparently it's
73 ;; due to something in my local site configuration (happens with -q but
74 ;; not -Q).
75 ;; * 2016-01-22 1.0.6 Ken Manheimer:
76 ;; - Add multishell-version function.
77 ;; - Tweak commentary/comments/docstrings.
78 ;; - Null old multishell-buffer-name-history var, if present.
79 ;; * 2016-01-16 1.0.5 Ken Manheimer:
80 ;; - History now includes paths, when designated.
81 ;; - Actively track current directory in history entries that have a path.
82 ;; Custom control: multishell-history-entry-tracks-current-directory
83 ;; - Offer to remove shell's history entry when buffer is killed.
84 ;; (Currently the only UI mechanism to remove history entries.)
85 ;; - Fix - prevent duplicate entries for same name but different paths
86 ;; - Fix - recognize and respect tramp path syntax to start in home dir
87 ;; - Simplify history var name, migrate existing history if any from old name
88 ;; * 2016-01-04 1.0.4 Ken Manheimer - Released to ELPA
89 ;; * 2016-01-02 Ken Manheimer - working on this in public, but not yet released.
90 ;;
91 ;; TODO:
92 ;;
93 ;; * Find suitable, internally consistent ways to tidy completions, eg:
94 ;; - first list completions for active shells, then present but inactive,
95 ;; then historical
96 ;; - some way for user to toggle between presenting just buffer names vs
97 ;; full buffer/path
98 ;; - without cutting user off from easy editing of path
99 ;; - maybe use keybindings that wrap minibuffer completion keys
100 ;; - minibuffer-local-completion-map, minibuffer-local-must-match-map
101 ;; - setup minibuffer with these vars just before doing completions
102 ;; - minibuffer exit reverts these vars, if necessary
103 ;; - toggles between name and name/path if last command was one of them
104 ;; - and an instruction in the completion buffer
105 ;; - "complete again immediately to toggle name vs name/path completions"
106 ;; * Add custom shell launch prep actions
107 ;; - shell commands to execute when shell name or path matches a regexp
108 ;; - list of [regexp, which (name, path, or both), command]
109 ;; - for, eg, knock commands or interface activations, whatever
110 ;; * Try minibuffer field boundary at beginning of tramp path, to see whether
111 ;; the field boundary magically enables tramp path completion.
112 ;; * Assess whether deletion of history entry via kill-buffer is sufficient.
113
114 ;;; Code:
115
116 (require 'comint)
117 (require 'shell)
118 (require 'savehist)
119
120 (defvar multishell-version "1.0.8")
121 (defun multishell-version (&optional here)
122 "Return string describing the loaded multishell version."
123 (interactive "P")
124 (let ((msg (concat "Multishell " multishell-version)))
125 (if here (insert msg)
126 (if (called-interactively-p 'interactive)
127 (message "%s" msg)
128 msg))))
129
130 (defgroup multishell nil
131 "Allout extension that highlights outline structure graphically.
132
133 Customize `allout-widgets-auto-activation' to activate allout-widgets
134 with allout-mode."
135 :group 'shell)
136
137 (defcustom multishell-command-key "\M- "
138 "The key to use if `multishell-activate-command-key' is true.
139
140 You can instead manually bind `multishell-pop-to-shell` using emacs
141 lisp, eg: (global-set-key \"\\M- \" 'multishell-pop-to-shell)."
142 :type 'key-sequence
143 :group 'multishell)
144
145 (defvar multishell--responsible-for-command-key nil
146 "Coordination for multishell key assignment.")
147 (defun multishell-activate-command-key-setter (symbol setting)
148 "Implement `multishell-activate-command-key' choice."
149 (set-default 'multishell-activate-command-key setting)
150 (when (or setting multishell--responsible-for-command-key)
151 (multishell-implement-command-key-choice (not setting))))
152 (defun multishell-implement-command-key-choice (&optional unbind)
153 "If settings dicate, implement binding of multishell command key.
154
155 If optional UNBIND is true, globally unbind the key.
156
157 * `multishell-activate-command-key' - Set this to get the binding or not.
158 * `multishell-command-key' - The key to use for the binding, if appropriate."
159 (cond (unbind
160 (when (and (boundp 'multishell-command-key) multishell-command-key)
161 (global-unset-key multishell-command-key)))
162 ((not (and (boundp 'multishell-activate-command-key)
163 (boundp 'multishell-command-key)))
164 nil)
165 ((and multishell-activate-command-key multishell-command-key)
166 (setq multishell--responsible-for-command-key t)
167 (global-set-key multishell-command-key 'multishell-pop-to-shell))))
168
169 (defcustom multishell-activate-command-key nil
170 "Set this to impose the `multishell-command-key' binding.
171
172 You can instead manually bind `multishell-pop-to-shell` using emacs
173 lisp, eg: (global-set-key \"\\M- \" 'multishell-pop-to-shell)."
174 :type 'boolean
175 :set 'multishell-activate-command-key-setter
176 :group 'multishell)
177
178 ;; Implement the key customization whenever the package is loaded:
179 (if (fboundp 'with-eval-after-load)
180 (with-eval-after-load "multishell"
181 (multishell-implement-command-key-choice))
182 (eval-after-load "multishell"
183 (multishell-implement-command-key-choice)))
184
185 (defcustom multishell-pop-to-frame nil
186 "*If non-nil, jump to a frame already showing the shell, if another one is.
187
188 Otherwise, disregard already-open windows on the shell if they're
189 in another frame, and open a new window on the shell in the
190 current frame.
191
192 \(Use `pop-up-windows' to change multishell other-window vs
193 current-window behavior.)"
194 :type 'boolean
195 :group 'multishell)
196
197 (defcustom multishell-history-entry-tracks-current-directory t
198 "Maintain shell's current directory in its multishell history entry.
199
200 When set, the history entry for shells started with explicit
201 paths will track the shell's current working directory. (Explicit
202 paths will not be added to local shells started without one,
203 however.)
204
205 If `savehist-save-minibuffer-history' is enabled, the current
206 working directory of shells \(that were started with an explicit
207 path) will be conveyed between emacs sessions."
208 :type 'boolean
209 :group 'multishell)
210
211 (defvar multishell-history nil
212 "Name/path entries, most recent first.")
213 ;; Migrate the few pre 1.0.5 users to changed history var:
214 (when (and (not multishell-history)
215 (boundp 'multishell-buffer-name-history)
216 multishell-buffer-name-history)
217 (setq multishell-history multishell-buffer-name-history
218 multishell-buffer-name-history nil))
219
220 (defvar multishell-primary-name "*shell*"
221 "Default shell name for un-modified multishell-pop-to-shell buffer target.
222
223 This is set by `multishell-pop-to-shell' as the current default,
224 when invoked with doubled universal argument.
225
226 If you want the designated primary that you have at the end of
227 one emacs session to be resumed at the next, customize
228 `savehist-additional-variables' to include the
229 `multishell-primary-name'.")
230
231 ;; Multiple entries happen because completion also adds name to history.
232 (defun multishell-register-name-to-path (name path)
233 "Add or replace entry associating NAME with PATH in `multishell-history'.
234
235 If NAME already had a PATH and new PATH is empty, retain the prior one.
236
237 Promote added/changed entry to the front of the list."
238 ;; Add or promote to the front, tracking path changes in the process.
239 (let* ((entries (multishell-history-entries name))
240 (path (or path "")))
241 (dolist (entry entries)
242 (when (string= path "")
243 ;; Retain explicit established path.
244 (setq path (cadr (multishell-split-entry entry))))
245 (setq multishell-history (delete entry multishell-history)))
246 (setq multishell-history (push (concat name path)
247 multishell-history))))
248
249 (defun multishell-history-entries (name)
250 "Return `multishell-history' entry that starts with NAME, or nil if none."
251 (save-match-data
252 (let ((match-expr (concat "^" name "\\\(/.*$\\\)?$"))
253 got)
254 (dolist (entry multishell-history)
255 (when (and (string-match match-expr entry)
256 (not (member entry got)))
257 (setq got (cons entry got))))
258 got)))
259
260 (defun multishell-pop-to-shell (&optional arg)
261 "Easily navigate to and within multiple shell buffers, local and remote.
262
263 Use universal arguments to launch and choose between alternate
264 shell buffers and to select which is default. Append a path to
265 a new shell name to launch a shell in that directory, and use
266 Emacs tramp syntax to launch a remote shell.
267
268 Customize-group `multishell' to set up a key binding and tweak behaviors.
269
270 ==== Basic operation:
271
272 - If the current buffer is shell-mode (or shell-mode derived)
273 buffer then focus is moved to the process input point.
274
275 \(You can use a universal argument go to a different shell
276 buffer when already in a buffer that has a process - see
277 below.)
278
279 - If not in a shell buffer (or with universal argument), go to a
280 window that is already showing the (a) shell buffer, if any.
281
282 In this case, the cursor is left in its prior position in the
283 shell buffer. Repeating the command will then go to the
284 process input point, per the first item in this list.
285
286 We respect `pop-up-windows', so you can adjust it to set the
287 other-buffer/same-buffer behavior.
288
289 - Otherwise, start a new shell buffer, using the current
290 directory as the working directory.
291
292 If a buffer with the resulting name exists and its shell process
293 was disconnected or otherwise stopped, it's resumed.
294
295 ===== Universal arg to start and select between named shell buffers:
296
297 You can name alternate shell buffers to create or return to using
298 single or doubled universal arguments:
299
300 - With a single universal argument, prompt for the buffer name
301 to use (without the asterisks that shell mode will put around
302 the name), defaulting to 'shell'.
303
304 Completion is available.
305
306 This combination makes it easy to start and switch across
307 multiple shell restarts.
308
309 - A double universal argument will prompt for the name *and* set
310 the default to that name, so the target shell becomes the
311 primary.
312
313 See `multishell-primary-name' for info about preserving the
314 setting across emacs restarts.
315
316 ===== Select starting directory and remote host:
317
318 The shell buffer name you give to the prompt for a universal arg
319 can include an appended path. That will be used for the startup
320 directory. You can use tramp remote syntax to specify a remote
321 shell. If there is an element after a final '/', that's used for
322 the buffer name. Otherwise, the host, domain, or path is used.
323
324 For example:
325
326 * '#root/sudo:root@localhost:/etc' for a buffer named \"*#root*\" with a
327 root shell starting in /etc.
328
329 * '/ssh:example.net:' for a shell buffer in your homedir on example.net.
330 The buffer will be named \"*example.net*\".
331
332 * '#ex/ssh:example.net|sudo:root@example.net:/var/log' for a root shell
333 starting in /var/log on example.net named \"*#ex*\".
334
335 * 'interior/ssh:gateway.corp.com|ssh:interior.corp.com:' to go
336 via gateway.corp.com to your homedir on interior.corp.com. The
337 buffer will be named \"*interior*\". You could append a sudo
338 hop to the path, combining the previous example, and so on.
339
340 Thanks to tramp, file visits from the shell, and many common
341 emacs activities, like dired, will seamlessly be in the auspices
342 of the target account, and relative to the current directory, on
343 the host where the shell is running.
344
345 You can change the startup path for a shell buffer by editing it
346 at the completion prompt. The new path will be preserved in
347 history but will not take effect for an already-running shell.
348
349 To remove a shell buffer's history entry, kill the buffer and
350 affirm removal of the entry when prompted.
351
352 ===== Activate savehist to retain shell buffer names and paths across Emacs restarts:
353
354 To have emacs maintain your history of shell buffer names and paths,
355 customize the savehist group to activate savehist."
356
357 (interactive "P")
358
359 (let* ((from-buffer (current-buffer))
360 (from-buffer-is-shell (derived-mode-p 'shell-mode))
361 (primary-name-unbracketed (multishell-unbracket-asterisks
362 multishell-primary-name))
363 (fallthrough-name (if from-buffer-is-shell
364 (buffer-name from-buffer)
365 primary-name-unbracketed))
366 (doublearg (equal arg '(16)))
367 (target-name-and-path
368 (multishell-resolve-target-name-and-path
369 (if arg
370 (or (multishell-read-bare-shell-buffer-name
371 (format "Shell buffer name [%s]%s "
372 primary-name-unbracketed
373 (if doublearg " <==" ":"))
374 primary-name-unbracketed)
375 primary-name-unbracketed)
376 fallthrough-name)))
377 (use-path (cadr target-name-and-path))
378 (target-shell-buffer-name (car target-name-and-path))
379 (target-buffer (get-buffer target-shell-buffer-name))
380 (curr-buff-proc (get-buffer-process from-buffer))
381 inwin
382 already-there)
383
384 ;; Register early so the entry is pushed to the front:
385 (multishell-register-name-to-path (multishell-unbracket-asterisks
386 target-shell-buffer-name)
387 use-path)
388
389 (when doublearg
390 (setq multishell-primary-name target-shell-buffer-name))
391
392 ;; Situate:
393
394 (cond
395
396 ((and (or curr-buff-proc from-buffer-is-shell)
397 (not arg)
398 (eq from-buffer target-buffer)
399 (not (eq target-shell-buffer-name (buffer-name from-buffer))))
400 ;; In a shell buffer, but not named - stay in buffer, but go to end.
401 (setq already-there t))
402
403 ((string= (buffer-name) target-shell-buffer-name)
404 ;; Already in the specified shell buffer:
405 (setq already-there t))
406
407 ((or (not target-buffer)
408 (not (setq inwin
409 (multishell-get-visible-window-for-buffer target-buffer))))
410 ;; No preexisting shell buffer, or not in a visible window:
411 (pop-to-buffer target-shell-buffer-name pop-up-windows))
412
413 ;; Buffer exists and already has a window - jump to it:
414 (t (if (and multishell-pop-to-frame
415 inwin
416 (not (equal (window-frame (selected-window))
417 (window-frame inwin))))
418 (select-frame-set-input-focus (window-frame inwin)))
419 (if (not (string= (buffer-name (current-buffer))
420 target-shell-buffer-name))
421 (pop-to-buffer target-shell-buffer-name t))))
422
423 ;; We're in the buffer. Activate:
424
425 (if (not (comint-check-proc (current-buffer)))
426 (multishell-start-shell-in-buffer (buffer-name (current-buffer))
427 use-path))
428
429 ;; If the destination buffer has a stopped process, resume it:
430 (let ((process (get-buffer-process (current-buffer))))
431 (if (and process (equal 'stop (process-status process)))
432 (continue-process process)))
433
434 (when (or already-there
435 (equal (current-buffer) from-buffer))
436 (goto-char (point-max))
437 (and (get-buffer-process from-buffer)
438 (goto-char (process-mark (get-buffer-process from-buffer)))))))
439
440 (defun multishell-kill-buffer-query-function ()
441 "Offer to remove multishell-history entry for buffer."
442 ;; Removal choice is crucial, so users can, eg, kill a shell with huge
443 ;; output backlog, while keeping the history entry to easily restart it.
444 ;;
445 ;; We use kill-buffer-query-functions instead of kill-buffer-hook because:
446 ;;
447 ;; 1. It enables the user to remove the history without actually killing a
448 ;; running buffer, by not confirming the subsequent running-proc query.
449 ;; 2. kill-buffer-hooks often fails to run when killing shell buffers!
450 ;; It's probably due to failures in other hooks - beyond our control -
451 ;; and anyway, I like the first reason well enough.
452
453 ;; (Use condition-case to avoid inadvertant disruption of kill-buffer
454 ;; activity. kill-buffer happens behind the scenes a whole lot.)
455 (condition-case err
456 (dolist (entry (and (derived-mode-p 'shell-mode)
457 (multishell-history-entries
458 (multishell-unbracket-asterisks (buffer-name)))))
459 (when (and entry
460 (y-or-n-p (format "Remove multishell history entry `%s'? "
461 entry)))
462 (setq multishell-history
463 (delete entry multishell-history))))
464 (error
465 (message "multishell-kill-buffer-query-function error: %s" err)))
466 t)
467 (add-hook 'kill-buffer-query-functions 'multishell-kill-buffer-query-function)
468
469 (defun multishell-get-visible-window-for-buffer (buffer)
470 "Return visible window containing buffer."
471 (catch 'got-a-vis
472 (walk-windows
473 (function (lambda (win)
474 (if (and (eq (window-buffer win) buffer)
475 (equal (frame-parameter
476 (selected-frame) 'display)
477 (frame-parameter
478 (window-frame win) 'display)))
479 (throw 'got-a-vis win))))
480 nil 'visible)
481 nil))
482
483 (defun multishell-read-bare-shell-buffer-name (prompt default)
484 "PROMPT for shell buffer name, sans asterisks. Indicate DEFAULT in prompt.
485
486 Return the supplied name, if provided, else return nil."
487 (let* ((candidates
488 (append
489 ;; Plain shell buffer names appended with names from name/path hist:
490 (remq nil
491 (mapcar (lambda (buffer)
492 (let* ((name (multishell-unbracket-asterisks
493 (buffer-name buffer))))
494 (and (buffer-live-p buffer)
495 (with-current-buffer buffer
496 ;; Shell mode buffers.
497 (derived-mode-p 'shell-mode))
498 (not (multishell-history-entries name))
499 name)))
500 (buffer-list)))
501 multishell-history))
502 (got (completing-read prompt
503 ;; COLLECTION:
504 (reverse candidates)
505 ;; PREDICATE:
506 nil
507 ;; REQUIRE-MATCH:
508 'confirm
509 ;; INITIAL-INPUT
510 nil
511 ;; HIST:
512 'multishell-history)))
513 (if (not (string= got ""))
514 got
515 nil)))
516
517 (defun multishell-resolve-target-name-and-path (path-ish)
518 "Given name/tramp-path PATH-ISH, resolve buffer name and initial directory.
519
520 The name is the part of the string up to the first '/' slash, if
521 any. Missing pieces are filled in from remote path elements, if
522 any, and multishell history. Given a path and no name, either the
523 host-name, domain-name, final directory name, or local host name
524 is used.
525
526 Return them as a list (name path), with name asterisk-bracketed
527 and path nil if none resolved."
528 (let* ((splat (multishell-split-entry (or path-ish "")))
529 (name (car splat))
530 (path (cadr splat)))
531 (if path
532 (if (not name)
533 (setq name
534 (if (file-remote-p path)
535 (let ((vec (tramp-dissect-file-name path)))
536 (or (tramp-file-name-host vec)
537 (tramp-file-name-domain vec)
538 (tramp-file-name-localname vec)
539 system-name))
540 multishell-primary-name)))
541 ;; No path - get one from history, if present.
542 (when (not name)
543 (setq name multishell-primary-name))
544 (mapcar #'(lambda (entry)
545 (when (or (not path) (string= path ""))
546 (setq path (cadr (multishell-split-entry entry)))))
547 (multishell-history-entries
548 (multishell-unbracket-asterisks name))))
549 (list (multishell-bracket-asterisks name) path)))
550
551 (defun multishell-start-shell-in-buffer (buffer-name path)
552 "Start, restart, or continue a shell in BUFFER-NAME on PATH."
553 (let* ((buffer (get-buffer buffer-name))
554 is-remote)
555
556 (set-buffer buffer)
557
558 (when (and path (file-remote-p path))
559
560 (when (and (derived-mode-p 'shell-mode)
561 (not (comint-check-proc (current-buffer))))
562 ;; Returning to disconnected remote shell. Do some tidying:
563 (tramp-cleanup-connection
564 (tramp-dissect-file-name default-directory 'noexpand)
565 'keep-debug 'keep-password))
566
567 (message "Connecting to %s" path)
568 (cd path))
569
570 (shell buffer)))
571
572 (defun multishell-track-dirchange (name newpath)
573 "Change multishell history entry to track current directory."
574 (let* ((entries (multishell-history-entries name)))
575 (dolist (entry entries)
576 (let* ((name-path (multishell-split-entry entry))
577 (name (car name-path))
578 (path (cadr name-path)))
579 (when path
580 (let* ((is-remote (file-remote-p path))
581 (vec (and is-remote (tramp-dissect-file-name path nil)))
582 (localname (if is-remote
583 (tramp-file-name-localname vec)
584 path))
585 (newlocalname
586 (replace-regexp-in-string (if (string= localname "")
587 "$"
588 (regexp-quote localname))
589 ;; REP
590 newpath
591 ;; STRING
592 localname
593 ;; FIXEDCASE
594 t
595 ;; LITERAL
596 t
597 ))
598 (newpath (if is-remote
599 (tramp-make-tramp-file-name (aref vec 0)
600 (aref vec 1)
601 (aref vec 2)
602 newlocalname
603 (aref vec 4))
604 newlocalname))
605 (newentry (concat name newpath))
606 (membership (member entry multishell-history)))
607 (when membership
608 (setcar membership newentry))))))))
609 (defvar multishell-was-default-directory ()
610 "Provide for tracking directory changes.")
611 (make-variable-buffer-local 'multishell-was-default-directory)
612 (defun multishell-post-command-business ()
613 "Do multishell bookkeeping."
614 ;; Update multishell-history with dir changes.
615 (condition-case err
616 (when (and multishell-history-entry-tracks-current-directory
617 (derived-mode-p 'shell-mode))
618 (let ((curdir (if (file-remote-p default-directory)
619 (tramp-file-name-localname
620 (tramp-dissect-file-name default-directory))
621 default-directory)))
622 (when (and multishell-was-default-directory
623 (not (string= curdir multishell-was-default-directory)))
624 (multishell-track-dirchange (multishell-unbracket-asterisks
625 (buffer-name))
626 curdir))
627 (setq multishell-was-default-directory curdir)))
628 ;; To avoid disruption as a pervasive hook function, swallow all errors:
629 (error
630 (message "multishell-post-command-business error: %s" err))))
631 (add-hook 'post-command-hook 'multishell-post-command-business)
632
633 (defun multishell-split-entry (entry)
634 "Given multishell name/path ENTRY, return the separated name and path pair.
635
636 Returns nil for empty parts, rather than the empty string."
637 (save-match-data
638 (string-match "^\\([^/]*\\)\\(/?.*\\)?" entry)
639 (let ((name (match-string 1 entry))
640 (path (match-string 2 entry)))
641 (and (string= name "") (setq name nil))
642 (and (string= path "") (setq path nil))
643 (list name path))))
644 (defun multishell-bracket-asterisks (name)
645 "Return a copy of name, ensuring it has an asterisk at the beginning and end."
646 (if (not (string= (substring name 0 1) "*"))
647 (setq name (concat "*" name)))
648 (if (not (string= (substring name -1) "*"))
649 (setq name (concat name "*")))
650 name)
651 (defun multishell-unbracket-asterisks (name)
652 "Return a copy of name, removing asterisks, if any, at beginning and end."
653 (if (string= (substring name 0 1) "*")
654 (setq name (substring name 1)))
655 (if (string= (substring name -1) "*")
656 (setq name (substring name 0 -1)))
657 name)
658
659 (provide 'multishell)
660
661 ;;; multishell.el ends here