]> code.delx.au - gnu-emacs-elpa/blob - multishell.el
multishell - simplify multishell-start-shell-in-buffer
[gnu-emacs-elpa] / 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 (with-eval-after-load "multishell"
180 (multishell-implement-command-key-choice))
181
182 (defcustom multishell-pop-to-frame nil
183 "*If non-nil, jump to a frame already showing the shell, if another one is.
184
185 Otherwise, disregard already-open windows on the shell if they're
186 in another frame, and open a new window on the shell in the
187 current frame.
188
189 \(Use `pop-up-windows' to change multishell other-window vs
190 current-window behavior.)"
191 :type 'boolean
192 :group 'multishell)
193
194 (defcustom multishell-history-entry-tracks-current-directory t
195 "Maintain shell's current directory in its multishell history entry.
196
197 When set, the history entry for shells started with explicit
198 paths will track the shell's current working directory. (Explicit
199 paths will not be added to local shells started without one,
200 however.)
201
202 If `savehist-save-minibuffer-history' is enabled, the current
203 working directory of shells \(that were started with an explicit
204 path) will be conveyed between emacs sessions."
205 :type 'boolean
206 :group 'multishell)
207
208 (defvar multishell-history nil
209 "Name/path entries, most recent first.")
210 ;; Migrate the few pre 1.0.5 users to changed history var:
211 (when (and (not multishell-history)
212 (boundp 'multishell-buffer-name-history)
213 multishell-buffer-name-history)
214 (setq multishell-history multishell-buffer-name-history
215 multishell-buffer-name-history nil))
216
217 (defvar multishell-primary-name "*shell*"
218 "Default shell name for un-modified multishell-pop-to-shell buffer target.
219
220 This is adjusted by `multishell-pop-to-shell' when it is
221 invoked (with doubled universal argument) to set the default.
222
223 To track the current primary across emacs restarts, add the name
224 of this variable to `savehist-additional-variables' by
225 customizing the latter.")
226
227 ;;; Can't just add multishell-primary-name to savehist-additional-variables
228 ;;; - it'll be lost any time the user runs emacs without loading
229 ;;; multishell. So instead, inform the user that they can customize
230 ;;; savehist-additional-variables.
231 ;;;
232 ;;; I suspect that including savehist-additional-variables *on*
233 ;;; savehist-additional-variables could avoid this problem, as long as it
234 ;;; doesn't conflict with user customizations. However, even if that works,
235 ;;; doing so from multishell would change a behavior (for the better, but)
236 ;;; beyond multishell's scope, making the change hard to track down.
237
238 ;; (when (not (member 'multishell-primary-name
239 ;; savehist-additional-variables))
240 ;; (setq savehist-additional-variables
241 ;; (cons 'multishell-primary-name savehist-additional-variables)))
242
243 ;; Multiple entries happen because completion also adds name to history.
244 (defun multishell-register-name-to-path (name path)
245 "Add or replace entry associating NAME with PATH in `multishell-history'.
246
247 If NAME already had a PATH and new PATH is empty, retain the prior one.
248
249 Promote added/changed entry to the front of the list."
250 ;; Add or promote to the front, tracking path changes in the process.
251 (let* ((entries (multishell-history-entries name))
252 (path (or path "")))
253 (dolist (entry entries)
254 (when (string= path "")
255 ;; Retain explicit established path.
256 (setq path (cadr (multishell-split-entry entry))))
257 (setq multishell-history (delete entry multishell-history)))
258 (setq multishell-history (push (concat name path)
259 multishell-history))))
260
261 (defun multishell-history-entries (name)
262 "Return `multishell-history' entry that starts with NAME, or nil if none."
263 (let ((match-expr (concat "^" name "\\\(/.*$\\\)?$"))
264 got)
265 (dolist (entry multishell-history)
266 (when (and (string-match match-expr entry)
267 (not (member entry got)))
268 (setq got (cons entry got))))
269 got))
270
271 (defun multishell-pop-to-shell (&optional arg)
272 "Easily navigate to and within multiple shell buffers, local and remote.
273
274 Use universal arguments to launch and choose between alternate
275 shell buffers and to select which is default. Append a path to
276 a new shell name to launch a shell in that directory, and use
277 Emacs tramp syntax to launch a remote shell.
278
279 Customize-group `multishell' to set up a key binding and tweak behaviors.
280
281 ==== Basic operation:
282
283 - If the current buffer is shell-mode (or shell-mode derived)
284 buffer then focus is moved to the process input point.
285
286 \(You can use a universal argument go to a different shell
287 buffer when already in a buffer that has a process - see
288 below.)
289
290 - If not in a shell buffer (or with universal argument), go to a
291 window that is already showing the (a) shell buffer, if any.
292
293 In this case, the cursor is left in its prior position in the
294 shell buffer. Repeating the command will then go to the
295 process input point, per the first item in this list.
296
297 We respect `pop-up-windows', so you can adjust it to set the
298 other-buffer/same-buffer behavior.
299
300 - Otherwise, start a new shell buffer, using the current
301 directory as the working directory.
302
303 If a buffer with the resulting name exists and its shell process
304 was disconnected or otherwise stopped, it's resumed.
305
306 ===== Universal arg to start and select between named shell buffers:
307
308 You can name alternate shell buffers to create or return to using
309 single or doubled universal arguments:
310
311 - With a single universal argument, prompt for the buffer name
312 to use (without the asterisks that shell mode will put around
313 the name), defaulting to 'shell'.
314
315 Completion is available.
316
317 This combination makes it easy to start and switch across
318 multiple shell restarts.
319
320 - A double universal argument will prompt for the name *and* set
321 the default to that name, so the target shell becomes the
322 primary.
323
324 See `multishell-primary-name' for info about preserving the
325 setting across emacs restarts.
326
327 ===== Select starting directory and remote host:
328
329 The shell buffer name you give to the prompt for a universal arg
330 can include an appended path. That will be used for the startup
331 directory. You can use tramp remote syntax to specify a remote
332 shell. If there is an element after a final '/', that's used for
333 the buffer name. Otherwise, the host, domain, or path is used.
334
335 For example:
336
337 * '#root/sudo:root@localhost:/etc' for a buffer named \"*#root*\" with a
338 root shell starting in /etc.
339
340 * '/ssh:example.net:' for a shell buffer in your homedir on example.net.
341 The buffer will be named \"*example.net*\".
342
343 * '#ex/ssh:example.net|sudo:root@example.net:/var/log' for a root shell
344 starting in /var/log on example.net named \"*#ex*\".
345
346 * 'interior/ssh:gateway.corp.com|ssh:interior.corp.com:' to go
347 via gateway.corp.com to your homedir on interior.corp.com. The
348 buffer will be named \"*interior*\". You could append a sudo
349 hop to the path, combining the previous example, and so on.
350
351 Thanks to tramp, file visits from the shell, and many common
352 emacs activities, like dired, will seamlessly be in the auspices
353 of the target account, and relative to the current directory, on
354 the host where the shell is running.
355
356 You can change the startup path for a shell buffer by editing it
357 at the completion prompt. The new path will be preserved in
358 history but will not take effect for an already-running shell.
359
360 To remove a shell buffer's history entry, kill the buffer and
361 affirm removal of the entry when prompted.
362
363 ===== Activate savehist to retain shell buffer names and paths across Emacs restarts:
364
365 To have emacs maintain your history of shell buffer names and paths,
366 customize the savehist group to activate savehist."
367
368 (interactive "P")
369
370 (let* ((from-buffer (current-buffer))
371 (from-buffer-is-shell (derived-mode-p 'shell-mode))
372 (primary-name-unbracketed (multishell-unbracket-asterisks
373 multishell-primary-name))
374 (fallthrough-name (if from-buffer-is-shell
375 (buffer-name from-buffer)
376 primary-name-unbracketed))
377 (doublearg (equal arg '(16)))
378 (target-name-and-path
379 (multishell-resolve-target-name-and-path
380 (if arg
381 (or (multishell-read-bare-shell-buffer-name
382 (format "Shell buffer name [%s]%s "
383 primary-name-unbracketed
384 (if doublearg " <==" ":"))
385 primary-name-unbracketed)
386 primary-name-unbracketed)
387 fallthrough-name)))
388 (use-path (cadr target-name-and-path))
389 (target-shell-buffer-name (car target-name-and-path))
390 (target-buffer (get-buffer target-shell-buffer-name))
391 (curr-buff-proc (get-buffer-process from-buffer))
392 inwin
393 already-there)
394
395 ;; Register early so the entry is pushed to the front:
396 (multishell-register-name-to-path (multishell-unbracket-asterisks
397 target-shell-buffer-name)
398 use-path)
399
400 (when doublearg
401 (setq multishell-primary-name target-shell-buffer-name))
402
403 ;; Situate:
404
405 (cond
406
407 ((and (or curr-buff-proc from-buffer-is-shell)
408 (not arg)
409 (eq from-buffer target-buffer)
410 (not (eq target-shell-buffer-name (buffer-name from-buffer))))
411 ;; In a shell buffer, but not named - stay in buffer, but go to end.
412 (setq already-there t))
413
414 ((string= (buffer-name) target-shell-buffer-name)
415 ;; Already in the specified shell buffer:
416 (setq already-there t))
417
418 ((or (not target-buffer)
419 (not (setq inwin
420 (multishell-get-visible-window-for-buffer target-buffer))))
421 ;; No preexisting shell buffer, or not in a visible window:
422 (pop-to-buffer target-shell-buffer-name pop-up-windows))
423
424 ;; Buffer exists and already has a window - jump to it:
425 (t (if (and multishell-pop-to-frame
426 inwin
427 (not (equal (window-frame (selected-window))
428 (window-frame inwin))))
429 (select-frame-set-input-focus (window-frame inwin)))
430 (if (not (string= (buffer-name (current-buffer))
431 target-shell-buffer-name))
432 (pop-to-buffer target-shell-buffer-name t))))
433
434 ;; We're in the buffer. Activate:
435
436 (if (not (comint-check-proc (current-buffer)))
437 (multishell-start-shell-in-buffer (buffer-name (current-buffer))
438 use-path))
439
440 ;; If the destination buffer has a stopped process, resume it:
441 (let ((process (get-buffer-process (current-buffer))))
442 (if (and process (equal 'stop (process-status process)))
443 (continue-process process)))
444
445 (when (or already-there
446 (equal (current-buffer) from-buffer))
447 (goto-char (point-max))
448 (and (get-buffer-process from-buffer)
449 (goto-char (process-mark (get-buffer-process from-buffer)))))))
450
451 (defun multishell-kill-buffer-query-function ()
452 "Offer to remove multishell-history entry for buffer."
453 ;; Removal choice is crucial, so users can, eg, kill a shell with huge
454 ;; output backlog, while keeping the history entry to easily restart it.
455 ;;
456 ;; We use kill-buffer-query-functions instead of kill-buffer-hook because:
457 ;;
458 ;; 1. It enables the user to remove the history without actually killing a
459 ;; running buffer, by not confirming the subsequent running-proc query.
460 ;; 2. kill-buffer-hooks often fails to run when killing shell buffers!
461 ;; It's probably due to failures in other hooks - beyond our control -
462 ;; and anyway, I like the first reason well enough.
463
464 ;; (Use condition-case to avoid inadvertant disruption of kill-buffer
465 ;; activity. kill-buffer happens behind the scenes a whole lot.)
466 (condition-case err
467 (dolist (entry (and (derived-mode-p 'shell-mode)
468 (multishell-history-entries
469 (multishell-unbracket-asterisks (buffer-name)))))
470 (when (and entry
471 (y-or-n-p (format "Remove multishell history entry `%s'? "
472 entry)))
473 (setq multishell-history
474 (delete entry multishell-history))))
475 (error
476 (message "multishell-kill-buffer-query-function error: %s" err)))
477 t)
478 (add-hook 'kill-buffer-query-functions 'multishell-kill-buffer-query-function)
479
480 (defun multishell-get-visible-window-for-buffer (buffer)
481 "Return visible window containing buffer."
482 (catch 'got-a-vis
483 (walk-windows
484 (function (lambda (win)
485 (if (and (eq (window-buffer win) buffer)
486 (equal (frame-parameter
487 (selected-frame) 'display)
488 (frame-parameter
489 (window-frame win) 'display)))
490 (throw 'got-a-vis win))))
491 nil 'visible)
492 nil))
493
494 (defun multishell-read-bare-shell-buffer-name (prompt default)
495 "PROMPT for shell buffer name, sans asterisks. Indicate DEFAULT in prompt.
496
497 Return the supplied name, if provided, else return nil."
498 (let* ((candidates
499 (append
500 ;; Plain shell buffer names appended with names from name/path hist:
501 (remq nil
502 (mapcar (lambda (buffer)
503 (let* ((name (multishell-unbracket-asterisks
504 (buffer-name buffer))))
505 (and (buffer-live-p buffer)
506 (with-current-buffer buffer
507 ;; Shell mode buffers.
508 (derived-mode-p 'shell-mode))
509 (not (multishell-history-entries name))
510 name)))
511 (buffer-list)))
512 multishell-history))
513 (got (completing-read prompt
514 ;; COLLECTION:
515 (reverse candidates)
516 ;; PREDICATE:
517 nil
518 ;; REQUIRE-MATCH:
519 'confirm
520 ;; INITIAL-INPUT
521 nil
522 ;; HIST:
523 'multishell-history)))
524 (if (not (string= got ""))
525 got
526 nil)))
527
528 (defun multishell-resolve-target-name-and-path (path-ish)
529 "Given name/tramp-path PATH-ISH, resolve buffer name and initial directory.
530
531 The name is the part of the string up to the first '/' slash, if
532 any. Missing pieces are filled in from remote path elements, if
533 any, and multishell history. Given a path and no name, either the
534 host-name, domain-name, final directory name, or local host name
535 is used.
536
537 Return them as a list (name path), with name asterisk-bracketed
538 and path nil if none resolved."
539 (let* ((splat (multishell-split-entry (or path-ish "")))
540 (name (car splat))
541 (path (cadr splat)))
542 (if path
543 (if (not name)
544 (setq name
545 (if (file-remote-p path)
546 (let ((vec (tramp-dissect-file-name path)))
547 (or (tramp-file-name-host vec)
548 (tramp-file-name-domain vec)
549 (tramp-file-name-localname vec)
550 system-name))
551 multishell-primary-name)))
552 ;; No path - get one from history, if present.
553 (when (not name)
554 (setq name multishell-primary-name))
555 (mapcar #'(lambda (entry)
556 (when (or (not path) (string= path ""))
557 (setq path (cadr (multishell-split-entry entry)))))
558 (multishell-history-entries
559 (multishell-unbracket-asterisks name))))
560 (list (multishell-bracket-asterisks name) path)))
561
562 (defun multishell-bracket-asterisks (name)
563 "Return a copy of name, ensuring it has an asterisk at the beginning and end."
564 (if (not (string= (substring name 0 1) "*"))
565 (setq name (concat "*" name)))
566 (if (not (string= (substring name -1) "*"))
567 (setq name (concat name "*")))
568 name)
569 (defun multishell-unbracket-asterisks (name)
570 "Return a copy of name, removing asterisks, if any, at beginning and end."
571 (if (string= (substring name 0 1) "*")
572 (setq name (substring name 1)))
573 (if (string= (substring name -1) "*")
574 (setq name (substring name 0 -1)))
575 name)
576
577 (defun multishell-start-shell-in-buffer (buffer-name path)
578 "Start, restart, or continue a shell in BUFFER-NAME on PATH."
579 (let* ((buffer (get-buffer buffer-name))
580 is-remote)
581
582 (set-buffer buffer)
583
584 (when (and path (file-remote-p path))
585
586 (when (and (derived-mode-p 'shell-mode)
587 (not (comint-check-proc (current-buffer))))
588 ;; Returning to disconnected remote shell. Do some tidying:
589 (tramp-cleanup-connection
590 (tramp-dissect-file-name default-directory 'noexpand)
591 'keep-debug 'keep-password))
592
593 (message "Connecting to %s" path)
594 (cd path))
595
596 (shell buffer)))
597
598 (defun multishell-track-dirchange (name newpath)
599 "Change multishell history entry to track current directory."
600 (let* ((entries (multishell-history-entries name)))
601 (dolist (entry entries)
602 (let* ((name-path (multishell-split-entry entry))
603 (name (car name-path))
604 (path (cadr name-path)))
605 (when path
606 (let* ((is-remote (file-remote-p path))
607 (vec (and is-remote (tramp-dissect-file-name path nil)))
608 (localname (if is-remote
609 (tramp-file-name-localname vec)
610 path))
611 (newlocalname
612 (replace-regexp-in-string (if (string= localname "")
613 "$"
614 (regexp-quote localname))
615 ;; REP
616 newpath
617 ;; STRING
618 localname
619 ;; FIXEDCASE
620 t
621 ;; LITERAL
622 t
623 ))
624 (newpath (if is-remote
625 (tramp-make-tramp-file-name (aref vec 0)
626 (aref vec 1)
627 (aref vec 2)
628 newlocalname
629 (aref vec 4))
630 newlocalname))
631 (newentry (concat name newpath))
632 (membership (member entry multishell-history)))
633 (when membership
634 (setcar membership newentry))))))))
635 (defvar multishell-was-default-directory ()
636 "Provide for tracking directory changes.")
637 (make-variable-buffer-local 'multishell-was-default-directory)
638 (defun multishell-post-command-business ()
639 "Do multishell bookkeeping."
640 ;; Update multishell-history with dir changes.
641 (condition-case err
642 (when (and multishell-history-entry-tracks-current-directory
643 (derived-mode-p 'shell-mode))
644 (let ((curdir (if (file-remote-p default-directory)
645 (tramp-file-name-localname
646 (tramp-dissect-file-name default-directory))
647 default-directory)))
648 (when (and multishell-was-default-directory
649 (not (string= curdir multishell-was-default-directory)))
650 (multishell-track-dirchange (multishell-unbracket-asterisks
651 (buffer-name))
652 curdir))
653 (setq multishell-was-default-directory curdir)))
654 ;; To avoid disruption as a pervasive hook function, swallow all errors:
655 (error
656 (message "multishell-post-command-business error: %s" err))))
657 (add-hook 'post-command-hook 'multishell-post-command-business)
658
659 (defun multishell-split-entry (entry)
660 "Given multishell name/path ENTRY, return the separated name and path pair.
661
662 Returns nil for empty parts, rather than the empty string."
663 (string-match "^\\([^/]*\\)\\(/?.*\\)?" entry)
664 (let ((name (match-string 1 entry))
665 (path (match-string 2 entry)))
666 (and (string= name "") (setq name nil))
667 (and (string= path "") (setq path nil))
668 (list name path)))
669
670 (provide 'multishell)
671
672 ;;; multishell.el ends here