]> code.delx.au - gnu-emacs-elpa/blobdiff - README.md
Migrate multishell to its own repository.
[gnu-emacs-elpa] / README.md
index 7a48add6ada6739b015819a7bd330506595e9ae9..be5e78de0a16a8377daaffb4b7c8c297025e1831 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,61 +1,36 @@
-EmacsUtils
-==========
+multishell.el
+=============
 
-Handy Emacs utilities
+Facilitate interaction with multiple local and remote Emacs shell buffers.
 
-I've been using Gnu Emacs since it was publicly available (1985?), and have contributed some packages which are included with Emacs, notably the [Allout outliner](http://myriadicity.net/software-and-systems/craft/emacs-allout), [icomplete mode](http://www.emacswiki.org/emacs/IcompleteMode), and python-mode's [pdbtrack functionality](http://myriadicity.net/software-and-systems/craft/crafty-hacks#section-1). Like many long-time Emacs users, I have a bunch of custom code, some that's crucial. Here are some that others might find useful. I hope to include more, as time allows.
+I use the emacs shell a *lot*. On top of emacs' powerful shell and tramp
+facilities, multishell.el turns emacs into a versatile tool for conducting
+operations and development across numerous hosts.
 
-* **[multishell.el](./multishell.el)**
+Using the include customization binding, you can use a keystroke to:
 
-  I use the emacs shell a *lot*. I bind this to Meta-space to make it easy 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.
+* Use universal arguments to launch and choose among alternate shell buffers,
+* ... and select which is default.
+* 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.
 
-  * Get to a shell buffer with a keystroke,
-  * ... or to the input point for the current shell buffer.
-  * Use universal arguments to launch and choose between alternate shell
-    buffers and to select which is default.
-  * Prepend a path to a new shell name to launch a shell in that directory,
-  * and use Emacs tramp path syntax to launch a remote shell.
+  For example: 
 
-  On top of emacs' powerful shell and tramp facilities, this turns emacs
-  into a versatile tool for conducting operations and development across
-  numerous hosts.
+  * '/ssh:example.net:/' for a shell buffer in / on
+    example.net; the buffer will be named "*example.net*".
 
-* **[xsel.el](./xsel.el)**
+  * '#ex/ssh:example.net|sudo:root@example.net:/etc' for a root shell
+    starting in /etc on example.net named "*#ex*".
 
-  X copy and paste emacs region from emacs tty sessions, using a shell command.
+(NOTE that there is a problem with specifying a remote homedir using
+tramp syntax, eg '/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 ~.)
 
-  If xsel or linux or cygwin equivalent is installed, and DISPLAY is
-  working, use `klm:xsel-copy` to copy the region to the X clipboard and
-  `klm:xsel-paste` to paste the contents of the clipboard at point.
+Customize-group `multishell` to select and activate a keybinding and set
+various behaviors. Customize-group `savehist` to preserve buffer
+names/paths across emacs sessions.
 
-  One benefit is that `klm:xsel-paste` pastes are single units, rather than
-  a sequence of individual keystrokes that constitute regular X pastes to a
-  terminal. This avoids layers of parsing, indenting, auto-paren insertion,
-  and so forth. (You can always do a regular X paste on occasions when you
-  want that processing.)
-
-  NOTE well - ssh has has a little known, severe default X11 forwarding
-  timeout that leads to unexpected failures after ten minutes - yikes! To
-  mitigate it, set ForwardX11Timeout to something larger - up to the
-  unexpected max of 596h, slightly beyond which the number is ignored. See
-  http://b.kl3in.com/2012/01/x11-display-forwarding-fails-after-some-time/
-  for details.
-
-* **[pdbtrack.el](./pdbtrack.el)**
-
-  [I've moved my standalone version of pdbtrack aside. I hadn't realized 
-  that the version that I derived this code from lacks my source-buffer 
-  fallback provisions. It looks like I'm going to have to do some
-  unraveling to reconstruct the best basis.]
-
-  Add sensitivity to comint shells so the source file lines are automatically
-  presented in a separate window when the Python PDB debugger steps to them.
-
-  This is derived from the pdb tracking code, which I originally wrote, and
-  which has been included in (various) official Emacs Python modes. I wanted
-  a version that I could more easily tweak and maintain, independently of
-  the python-mode code.
-
-  It would be nice to eventually generalize this code, to work for things
-  like the node.js debugger. We'll see if I (or anyone) ever gets around to
-  that.
+See the `multishell-pop-to-shell` docstring for details.