]> code.delx.au - gnu-emacs-elpa/blobdiff - README.md
multishell - update features list, remove change log and todo
[gnu-emacs-elpa] / README.md
index 485d22d847f6c265dd7bf06f6b8c9bc4edc875ed..08125f12f1e3a4197326664bb72f97cb6c930dd4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,34 +1,57 @@
 multishell.el
 =============
 
-Facilitate interaction with multiple local and remote Emacs shell buffers.
+Facilitate use of multiple local and remote Emacs shell buffers.
 
-I use the emacs shell a *lot*. On top of emacs' powerful shell and tramp
+Multishell is available via Emacs package manager, in ELPA. Install "multishell" from the `M-x package-list-packages` listing.
+
+I use the emacs shell a *lot*, including separate shells for separate
+project, and more shells for access to remote systems (which I do a lot, as
+a systems administrator). On top of emacs' powerful shell and tramp
 facilities, use a `multishell` (customization-activated) key binding to:
 
 * Get to the input point from wherever you are in a shell buffer,
-* ... or to one of your shell buffers if you're not currently in one.
+  ... or to any of your shell buffers, from anywhere inside emacs.
+
 * Use universal arguments to launch and choose among alternate shell buffers,
-* ... and select which is default.
+  ... and change which is the current default.
+
+* Easily restart disconnected shells, or shells from prior sessions
+  ... the latter from Emacs builtin savehist minibuf history persistence
+
 * Append a path to a new shell name to launch a shell in that directory,
-* ... and use a path with Emacs tramp syntax to launch a remote shell.
+  ... and use a path with Emacs tramp syntax to launch a remote shell -
+  for example:
 
-  For example: 
+  * `#root/sudo:root@localhost:/etc` for a buffer named "#root" with a
+    root shell starting in /etc.
 
-  * `/ssh:example.net:/` for a shell buffer in / on
-    example.net; the buffer will be named "*example.net*".
+  * `/ssh:example.net:/` for a shell buffer in / on example.net.
+    The buffer will be named "*example.net*".
 
   * `#ex/ssh:example.net|sudo:root@example.net:/etc` for a root shell
     starting in /etc on example.net named "*#ex*".
 
-(NOTE that there is a frequent problem with specifying a remote homedir
-using tramp syntax, eg `/ssh:example.net:` or `/ssh:example.net:~`. That
-sometimes fails on an obscure bug - particularly for remote+sudo with
-homedir syntax. Until fixed, you may need to start remote+sudo shells with
-an explicit path, then cd ~. With `multishell`s dir-tracking persistent history, you'll be able to use completion to start that shell in the right place, in your subsequent sessions.)
+  * 'interior/ssh:gateway.corp.com|ssh:interior.corp.com:' to go via
+    gateway.corp.com to your homedir on interior.corp.com.  The buffer
+    will be named "*interior*". You could append a sudo hop, and so on.
+
+* Thanks to tramp, file visits from the shell will seamlessly be in
+  the auspices of the target account, and relative to the current
+  directory, on the host where the shell is running.
+
+See the `multishell-pop-to-shell` docstring (in
+[multishell.el](multishell.el)) for details, and
+[getting-to-a-shell.md](getting-to-a-shell.md) for the nitty-gritty
+decision tree that determines where different hits of the keybinding go.
+
+Customize-group `multishell' to select and activate a keybinding and set
+various behaviors. Customize-group `savehist' to preserve buffer
+names/paths across emacs restarts.
 
-Customize-group `multishell` to select and activate a keybinding and set
-various behaviors. Customize-group `savehist` to preserve buffer
-names/paths across emacs sessions.
+Please use
+[the multishell repository](https://github.com/kenmanheimer/EmacsMultishell)
+issue tracker to report problems, suggestions, etc.
 
-See the `multishell-pop-to-shell` docstring for details.
+See the [multishell.el](multishell.el) file commentary for a change log and
+Todo list.