unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [ELPA] New package: multishell
@ 2016-01-02 22:19 Ken Manheimer
  2016-01-03 20:26 ` Artur Malabarba
  0 siblings, 1 reply; 8+ messages in thread
From: Ken Manheimer @ 2016-01-02 22:19 UTC (permalink / raw)
  To: emacs-devel@gnu.org

[-- Attachment #1: Type: text/plain, Size: 17479 bytes --]

I'm about to push a multishell as a new packge in the
git.sv.gnu.org:/srv/git/emacs/elpa.git.
I've been using rudimentary versions of this package for a long time. I
only recently discovered how well tramp is integrated to emacs shell, and
feel that my multishell approach to navigating multiple shell buffers, in
conjunction with remote shells, is extremely useful, hence this release.

While I have a few packages included with emacs, I haven't released
anything via ELPA before, and welcome corrections and suggestions.

One coding wrinkle worth mentioning - I prefixed most of my package's
functions with "multishell:" for pseudo-namespace partitioning, but did not
prefix the primary function, "pop-to-shell". I see that as the package's
exported api. I do not feel strongly bound to this choice, and can be
persuaded to also prefix it if someone feels there is good reason to do so.

Since my package is a single file, I'm including the commentary and etc. by
including the whole thing.

Ken Manheimer

;;; multishell.el --- manage interaction with multiple local and remote
shells

;; Copyright (C) 1999-2016 Free Software Foundation, Inc. and Ken Manheimer

;; Author: Ken Manheimer <ken dot manheimer at gmail...>
;; Version: 1.0.0
;; Maintainer: Ken Manheimer <ken dot manheimer at gmail...>
;; Created: 1999 -- first public availability
;; Keywords: processes
;; URL: https://github.com/kenmanheimer/EmacsUtils
;;
;;; Commentary:
;;
;; Easily use and manage multiple shell buffers, including remote shells.
;; Fundamentally, multishell is the function `multishell:pop-to-shell - like
;; pop-to-buffer - plus a keybinding. Together, they enable you to:
;;
;; * Get to the input point from wherever you are in a shell buffer,
;; * ... or to a shell buffer if you're not currently in one.
;; * Use universal arguments to launch and choose among alternate shell
buffers,
;; * ... and select which is default.
;; * Prepend 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.
;;
;; Customize-group `multishell` to select and activate a keybinding and set
;; various behaviors.
;;
;; See the pop-to-shell docstring for details.
;;
;;; Change Log:
;;
;; 2016-01-02 Ken Manheimer - initial release
;;
;;; TODO:
;;
;; * Preserveable (savehist) history that associates names with paths
;;   - Using an association list between names and paths
;;   - Searched for search backwards/forwards on isearch-like M-r/M-s
bindings
;;     - *Not* searched for regular completion
;;   - Editible
;;     - Using isearch keybinding M-e
;;     - Edits path
;;     - New association overrides previous
;;     - Deleting path removes association and history entry
;; * Customize activation of savehist
;;   - Customize entry has warning about activating savehist
;;   - Adds the name/path association list to savehist-additional-variables
;;   - Activates savehist, if inactive

;;; Code:

(defvar non-interactive-process-buffers '("*compilation*" "*grep*"))

(require 'comint)
(require 'shell)

(defgroup multishell nil
  "Allout extension that highlights outline structure graphically.

Customize `allout-widgets-auto-activation' to activate allout-widgets
with allout-mode."
  :group 'shell)

(defcustom multishell:non-interactive-process-buffers
  '("*compilation*" "*grep*")
  "Names of buffers that have processes but are not for interaction.
Add names of buffers that you don't want pop-to-shell to stick around in."
  :type '(repeat string)
  :group 'multishell)
(defcustom multishell:command-key "\M- "
  "The key to use if `multishell:activate-command-key' is true.

You can instead bind `pop-to-shell` to your preferred key using emacs
lisp, eg: (global-set-key \"\\M- \" 'pop-to-shell)."
  :type 'key-sequence
  :group 'multishell)

(defvar multishell:responsible-for-command-key nil
  "Multishell internal.")
(defun multishell:activate-command-key-setter (symbol setting)
  "Implement `multishell:activate-command-key' choice."
  (set-default 'multishell:activate-command-key setting)
  (when (or setting multishell:responsible-for-command-key)
    (multishell:implement-command-key-choice (not setting))))
(defun multishell:implement-command-key-choice (&optional unbind)
  "If settings dicate, implement binding of multishell command key.

If optional UNBIND is true, globally unbind the key.

* `multishell:activate-command-key' - Set this to get the binding or not.
* `multishell:command-key' - The key to use for the binding, if
appropriate."
  (cond (unbind
         (when (and (boundp 'multishell:command-key) multishell:command-key)
           (global-unset-key multishell:command-key)))
        ((not (and (boundp 'multishell:activate-command-key)
                   (boundp 'multishell:command-key)))
         nil)
        ((and multishell:activate-command-key multishell:command-key)
         (setq multishell:responsible-for-command-key t)
         (global-set-key multishell:command-key 'pop-to-shell))))

(defcustom multishell:activate-command-key nil
  "Set this to impose the `multishell:command-key' binding.

You can instead bind `pop-to-shell` to your preferred key using emacs
lisp, eg: (global-set-key \"\\M- \" 'pop-to-shell)."
  :type 'boolean
  :set 'multishell:activate-command-key-setter
  :group 'multishell)

;; Assert the customizations whenever the package is loaded:
(with-eval-after-load "multishell"
  (multishell:implement-command-key-choice))

(defcustom multishell:pop-to-frame nil
  "*If non-nil, jump to a frame already showing the shell, if another is.

Otherwise, open a new window in the current frame.

\(Adjust `pop-up-windows' to change other-buffer vs current-buffer
behavior.)"
  :type 'boolean
  :group 'multishell)

;; (defcustom multishell:persist-shell-names nil
;;   "Remember shell name/path associations across sessions. Note well:
;; This will activate minibuffer history persistence, in general, if it's
not
;; already active."
;;   :type 'boolean
;;  :group 'shell)

(defvar multishell:name-path-assoc nil
  "Assoc list from name to path")

(defvar multishell:primary-name "*shell*"
  "Shell name to use for un-modified pop-to-shell buffer target.")
(defvar multishell:buffer-name-history nil
  "Distinct pop-to-shell completion history container.")

(defun pop-to-shell (&optional arg)
  "Easily navigate to and within multiple shell buffers, local and remote.

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 syntax to launch a remote shell.

Customize-group `multishell' to set up a key binding and tweak behaviors.

==== Basic operation:

 - If the current buffer is associated with a subprocess (that is
   not among those named on `non-interactive-process-buffers'),
   then focus is moved to the process input point.

   \(You can use a universal argument go to a different shell
   buffer when already in a buffer that has a process - see
   below.)

 - If not in a shell buffer (or with universal argument), go to a
   window that is already showing the (a) shell buffer, if any.

   In this case, the cursor is left in its prior position in the
   shell buffer. Repeating the command will then go to the
   process input point, per the first item in this list.

   We respect `pop-up-windows', so you can adjust it to set the
   other-buffer/same-buffer behavior.

 - Otherwise, start a new shell buffer, using the current
   directory as the working directory.

If a buffer with the resulting name exists and its shell process
was disconnected or otherwise stopped, it's resumed.

===== Universal arg to start and select between named shell buffers:

You can name alternate shell buffers to create or return to using
single or doubled universal arguments:

 - With a single universal argument, prompt for the buffer name
   to use (without the asterisks that shell mode will put around
   the name), defaulting to 'shell'.

   Completion is available.

   This combination makes it easy to start and switch between
   multiple shell buffers.

 - A double universal argument will prompt for the name *and* set
   the default to that name, so the target shell becomes the
   primary.

===== Select starting directory and remote host:

The shell buffer name you give to the prompt for a universal arg
can include a preceding path. That will be used for the startup
directory. You can use tramp remote syntax to specify a remote
shell. If there is an element after a final '/', that's used for
the buffer name. Otherwise, the host, domain, or path is used.

For example:

* Use '/ssh:example.net:/' for a shell buffer on example.net named
  \"example.net\".
* '/ssh:example.net|sudo:root@example.net:/\#ex' for a root shell on
  example.net named \"#ex\"."

;; I'm leaving the following out of the docstring for now because just
;; saving the buffer names, and not the paths, yields sometimes unwanted
;; behavior.

;; ===== Persisting your alternate shell buffer names and paths:

;; You can use emacs builtin SaveHist to preserve your alternate
;; shell buffer names and paths across emacs sessions. To do so,
;; customize the `savehist' group, and:

;; 1. Add `multishell:pop-to-shell-buffer-name-history' to Savehist
Additional
;;    Variables.
;; 2. Activate Savehist Mode, if not already activated.
;; 3. Save.

  (interactive "P")

  (let* ((from-buffer (current-buffer))
         (from-buffer-is-shell (eq major-mode 'shell-mode))
         (doublearg (equal arg '(16)))
         (temp (if arg
                   (multishell:read-bare-shell-buffer-name
                    (format "Shell buffer name [%s]%s "
                            (substring-no-properties
                             multishell:primary-name
                             1 (- (length multishell:primary-name) 1))
                            (if doublearg " <==" ":"))
                    multishell:primary-name)
                 multishell:primary-name))
         use-default-dir
         (target-shell-buffer-name
          ;; Derive target name, and default-dir if any, from temp.
          (cond ((string= temp "") multishell:primary-name)
                ((string-match "^\\*\\(/.*/\\)\\(.*\\)\\*" temp)
                 (setq use-default-dir (match-string 1 temp))
                 (multishell:bracket-asterisks
                  (if (string= (match-string 2 temp) "")
                      (let ((v (tramp-dissect-file-name
                                use-default-dir)))
                        (or (tramp-file-name-host v)
                            (tramp-file-name-domain v)
                            (tramp-file-name-localname v)
                            use-default-dir))
                    (match-string 2 temp))))
                (t (multishell:bracket-asterisks temp))))
         (curr-buff-proc (get-buffer-process from-buffer))
         (target-buffer (if (and (or curr-buff-proc from-buffer-is-shell)
                                 (not (member (buffer-name from-buffer)

non-interactive-process-buffers)))
                            from-buffer
                          (get-buffer target-shell-buffer-name)))
         inwin
         already-there)

    (when doublearg
      (setq multishell:primary-name target-shell-buffer-name))

    ;; Situate:

    (cond

     ((and (or curr-buff-proc from-buffer-is-shell)
           (not arg)
           (eq from-buffer target-buffer)
           (not (eq target-shell-buffer-name (buffer-name from-buffer))))
      ;; In a shell buffer, but not named - stay in buffer, but go to end.
      (setq already-there t))

     ((string= (buffer-name) target-shell-buffer-name)
      ;; Already in the specified shell buffer:
      (setq already-there t))

     ((or (not target-buffer)
          (not (setq inwin
                     (multishell:get-visible-window-for-buffer
target-buffer))))
      ;; No preexisting shell buffer, or not in a visible window:
      (pop-to-buffer target-shell-buffer-name pop-up-windows))

       ;; Buffer exists and already has a window - jump to it:
     (t (if (and multishell:pop-to-frame
                 inwin
                 (not (equal (window-frame (selected-window))
                             (window-frame inwin))))
            (select-frame-set-input-focus (window-frame inwin)))
        (if (not (string= (buffer-name (current-buffer))
                          target-shell-buffer-name))
            (pop-to-buffer target-shell-buffer-name t))))

    ;; We're in the buffer.

    ;; If we have a use-default-dir, impose it:
    (when use-default-dir
        (cd use-default-dir))

    ;; Activate:

    (if (not (comint-check-proc (current-buffer)))
        (multishell:start-shell-in-buffer (buffer-name (current-buffer))))

    ;; If the destination buffer has a stopped process, resume it:
    (let ((process (get-buffer-process (current-buffer))))
      (if (and process (equal 'stop (process-status process)))
          (continue-process process)))
    (when (or already-there
             (equal (current-buffer) from-buffer))
      (goto-char (point-max))
      (and (get-buffer-process from-buffer)
           (goto-char (process-mark (get-buffer-process from-buffer)))))))

(defun multishell:get-visible-window-for-buffer (buffer)
  "Return visible window containing buffer."
  (catch 'got-a-vis
    (walk-windows
     (function (lambda (win)
                 (if (and (eq (window-buffer win) buffer)
                          (equal (frame-parameter
                                  (selected-frame) 'display)
                                 (frame-parameter
                                  (window-frame win) 'display)))
                     (throw 'got-a-vis win))))
     nil 'visible)
    nil))

(defun multishell:read-bare-shell-buffer-name (prompt default)
  "PROMPT for shell buffer name, sans asterisks.

Return the supplied name bracketed with the asterisks, or specified DEFAULT
on empty input."
  (let* ((candidates (append
                      (remq nil
                            (mapcar (lambda (buffer)
                                      (let ((name (buffer-name buffer)))
                                        (if (with-current-buffer buffer
                                              (eq major-mode 'shell-mode))
                                            ;; Shell mode buffers.
                                            (if (> (length name) 2)
                                                ;; Strip asterisks.
                                                (substring name 1
                                                           (1- (length
name)))
                                              name))))
                                    (buffer-list)))))
         (got (completing-read prompt
                               candidates ; COLLECTION
                               nil        ; PREDICATE
                               'confirm   ; REQUIRE-MATCH
                               nil        ; INITIAL-INPUT
                               'multishell:buffer-name-history ; HIST
                               )))
    (if (not (string= got "")) (multishell:bracket-asterisks got) default)))

(defun multishell:bracket-asterisks (name)
  "Return a copy of name, ensuring it has an asterisk at the beginning and
end."
  (if (not (string= (substring name 0 1) "*"))
      (setq name (concat "*" name)))
  (if (not (string= (substring name -1) "*"))
      (setq name (concat name "*")))
  name)
(defun multishell:unbracket-asterisks (name)
  "Return a copy of name, removing asterisks, if any, at beginning and end."
  (if (string= (substring name 0 1) "*")
      (setq name (substring name 1)))
  (if (string= (substring name -1) "*")
      (setq name (substring name 0 -1)))
  name)
(defun multishell:start-shell-in-buffer (buffer-name)
  "Ensure a shell is started, using whatever name we're passed."
  ;; We work around shell-mode's bracketing of the buffer name, and do
  ;; some tramp-mode hygiene for remote connections.

  (require 'comint)
  (require 'shell)

  (let* ((buffer buffer-name)
         (prog (or explicit-shell-file-name
                   (getenv "ESHELL")
                   (getenv "SHELL")
                   "/bin/sh"))
         (name (file-name-nondirectory prog))
         (startfile (concat "~/.emacs_" name))
         (xargs-name (intern-soft (concat "explicit-" name "-args"))))
    (set-buffer buffer-name)
    (when (and (file-remote-p default-directory)
               (eq major-mode 'shell-mode)
               (not (comint-check-proc (current-buffer))))
      ;; We're returning to an already established but disconnected remote
      ;; shell, tidy it:
      (tramp-cleanup-connection
       (tramp-dissect-file-name default-directory 'noexpand)
       'keep-debug 'keep-password))
    (setq buffer (set-buffer (apply 'make-comint
                                    (multishell:unbracket-asterisks
buffer-name)
                                    prog
                                    (if (file-exists-p startfile)
                                        startfile)
                                    (if (and xargs-name
                                             (boundp xargs-name))
                                        (symbol-value xargs-name)
                                      '("-i")))))
    (shell-mode)))

(provide 'multishell)

;;; multishell.el ends here

[-- Attachment #2: Type: text/html, Size: 24558 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-02 22:19 [ELPA] New package: multishell Ken Manheimer
@ 2016-01-03 20:26 ` Artur Malabarba
  2016-01-04 17:07   ` Ken Manheimer
  0 siblings, 1 reply; 8+ messages in thread
From: Artur Malabarba @ 2016-01-03 20:26 UTC (permalink / raw)
  To: Ken Manheimer; +Cc: emacs-devel@gnu.org

Ken Manheimer <ken.manheimer@gmail.com> writes:

> I'm about to push a multishell as a new packge in the git.sv.gnu.org:

Thank you!

> One coding wrinkle worth mentioning - I prefixed most of my package's
> functions with "multishell:"

Please change it to “multishell-”. It will work nicer with the customize
interface.

> did not prefix the primary function, "pop-to-shell". I see that as
> the package's exported api. I do not feel strongly bound to this
> choice, and can be persuaded to also prefix it if someone feels there
> is good reason to do so.

The current convention is to use multishell-pop-to-shell. This includes
user stuff (like commands and customization variables) as well as
programatic stuff that you consider “official api” (like functions that
other packages can call, or vars that can be configured but aren't
defcustoms).

In order to differentiate the functions and vars that are NOT
“exported”, use a double-dash (e.g. `multishell--bracket-asterisks').
(This is a relatively new convention, which is why a lot of places don't
use it).



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-03 20:26 ` Artur Malabarba
@ 2016-01-04 17:07   ` Ken Manheimer
  2016-01-04 18:27     ` Artur Malabarba
  0 siblings, 1 reply; 8+ messages in thread
From: Ken Manheimer @ 2016-01-04 17:07 UTC (permalink / raw)
  To: Artur Malabarba; +Cc: emacs-devel@gnu.org

[-- Attachment #1: Type: text/plain, Size: 1945 bytes --]

On Sun, Jan 3, 2016 at 3:26 PM, Artur Malabarba <bruce.connor.am@gmail.com>
wrote:

> Ken Manheimer <ken.manheimer@gmail.com> writes:
>
> > I'm about to push a multishell as a new packge in the git.sv.gnu.org:
>
> Thank you!
>

My pleasure!

> One coding wrinkle worth mentioning - I prefixed most of my package's
> > functions with "multishell:"
>
> Please change it to “multishell-”. It will work nicer with the customize
> interface.
>
> > did not prefix the primary function, "pop-to-shell". I see that as
> > the package's exported api. I do not feel strongly bound to this
> > choice, and can be persuaded to also prefix it if someone feels there
> > is good reason to do so.
>
> The current convention is to use multishell-pop-to-shell. This includes
> user stuff (like commands and customization variables) as well as
> programatic stuff that you consider “official api” (like functions that
> other packages can call, or vars that can be configured but aren't
> defcustoms).
>
> In order to differentiate the functions and vars that are NOT
> “exported”, use a double-dash (e.g. `multishell--bracket-asterisks').
> (This is a relatively new convention, which is why a lot of places don't
> use it).
>

Ok - I've done all this, but also changed my version number to 0, in order
to defer release.

This deferral is not due to any of these changes, but rather because I
discovered a change I want to make to the way I organize how remote shells
are expressed, and I need to shake the change out before it's ready. I
don't want anyone to get used to the old syntax, hence the release deferral.

It's been helpful, though, to shake out the release format with your and
other's help - thanks for that! I hope it's not inopportune for me to defer
the actual release after getting the code situated (and I welcome further
suggestions for making multishell a good ELPA citizen).

Ken

[-- Attachment #2: Type: text/html, Size: 2926 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-04 17:07   ` Ken Manheimer
@ 2016-01-04 18:27     ` Artur Malabarba
  2016-01-04 18:49       ` Ken Manheimer
  0 siblings, 1 reply; 8+ messages in thread
From: Artur Malabarba @ 2016-01-04 18:27 UTC (permalink / raw)
  To: Ken Manheimer; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 576 bytes --]

On Jan 4, 2016 3:07 PM, "Ken Manheimer" <ken.manheimer@gmail.com> wrote:
> It's been helpful, though, to shake out the release format with your and
other's help - thanks for that! I hope it's not inopportune for me to defer
the actual release after getting the code situated

I don't see any problem. The only thing that comes to mind is that, if you
don't want people to get used to the current version then you might want to
remove the package from Elpa for the moment.
I'm not sure if setting the version number to 0 will do that, or if it'll
only prevent further updates.

[-- Attachment #2: Type: text/html, Size: 709 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-04 18:27     ` Artur Malabarba
@ 2016-01-04 18:49       ` Ken Manheimer
  2016-01-04 20:29         ` Ken Manheimer
  0 siblings, 1 reply; 8+ messages in thread
From: Ken Manheimer @ 2016-01-04 18:49 UTC (permalink / raw)
  To: Artur Malabarba; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 936 bytes --]

On Mon, Jan 4, 2016 at 1:27 PM, Artur Malabarba <bruce.connor.am@gmail.com>
wrote:

> On Jan 4, 2016 3:07 PM, "Ken Manheimer" <ken.manheimer@gmail.com> wrote:
> > It's been helpful, though, to shake out the release format with your and
> other's help - thanks for that! I hope it's not inopportune for me to defer
> the actual release after getting the code situated
>
> I don't see any problem. The only thing that comes to mind is that, if you
> don't want people to get used to the current version then you might want to
> remove the package from Elpa for the moment.
> I'm not sure if setting the version number to 0 will do that, or if it'll
> only prevent further updates.
>
Ah! I didn't think it was yet released to ELPA - I don't see it in the
packages list. I'm uncertain whether or not you see that it actually is
release - could you let me know whether or not it is, and if it is I'll
move it aside, one way or another.

Ken

[-- Attachment #2: Type: text/html, Size: 1463 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-04 18:49       ` Ken Manheimer
@ 2016-01-04 20:29         ` Ken Manheimer
  2016-01-05  3:23           ` Artur Malabarba
  0 siblings, 1 reply; 8+ messages in thread
From: Ken Manheimer @ 2016-01-04 20:29 UTC (permalink / raw)
  To: Artur Malabarba; +Cc: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1082 bytes --]

On Mon, Jan 4, 2016 at 1:49 PM, Ken Manheimer <ken.manheimer@gmail.com>
wrote:

> On Mon, Jan 4, 2016 at 1:27 PM, Artur Malabarba <bruce.connor.am@gmail.com
> > wrote:
>
>> I don't see any problem. The only thing that comes to mind is that, if
>> you don't want people to get used to the current version then you might
>> want to remove the package from Elpa for the moment.
>>
>> I'm not sure if setting the version number to 0 will do that, or if it'll
>> only prevent further updates.
>>
> Ah! I didn't think it was yet released to ELPA - I don't see it in the
> packages list. I'm uncertain whether or not you see that it actually is
> release - could you let me know whether or not it is, and if it is I'll
> move it aside, one way or another.
>

Never mind - I think I've settled the change, and pushed it to the
repository with a version number incremented so it should be released,
instead of any prior versions. I still don't know whether or not the
absence in list-packages means it wasn't already released, but that
shouldn't matter now that a ready version is in place.

[-- Attachment #2: Type: text/html, Size: 1830 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-04 20:29         ` Ken Manheimer
@ 2016-01-05  3:23           ` Artur Malabarba
  2016-01-05  3:42             ` Michael Heerdegen
  0 siblings, 1 reply; 8+ messages in thread
From: Artur Malabarba @ 2016-01-05  3:23 UTC (permalink / raw)
  To: Ken Manheimer; +Cc: emacs-devel

2016-01-04 20:29 GMT+00:00 Ken Manheimer <ken.manheimer@gmail.com>:
> Never mind - I think I've settled the change, and pushed it to the
> repository with a version number incremented so it should be released,
> instead of any prior versions. I still don't know whether or not the absence
> in list-packages means it wasn't already released, but that shouldn't matter
> now that a ready version is in place.

Cool.
FWIW, you are correct that absence from list-packages means it hasn't
been released yet (you can also check the Gelpa website). I didn't
really check if it had been released before I wrote the other message.

Thanks again for the package. :-)



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [ELPA] New package: multishell
  2016-01-05  3:23           ` Artur Malabarba
@ 2016-01-05  3:42             ` Michael Heerdegen
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Heerdegen @ 2016-01-05  3:42 UTC (permalink / raw)
  To: emacs-devel

Artur Malabarba <bruce.connor.am@gmail.com> writes:

> FWIW, you are correct that absence from list-packages means it hasn't
> been released yet (you can also check the Gelpa website).

I think Elpa doesn't build currently due to errors (async related, I
think).  See the message posted by the server (or Stefan) from some days
ago.

John told me to have a look.


Regards,

Michael.




^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-01-05  3:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-02 22:19 [ELPA] New package: multishell Ken Manheimer
2016-01-03 20:26 ` Artur Malabarba
2016-01-04 17:07   ` Ken Manheimer
2016-01-04 18:27     ` Artur Malabarba
2016-01-04 18:49       ` Ken Manheimer
2016-01-04 20:29         ` Ken Manheimer
2016-01-05  3:23           ` Artur Malabarba
2016-01-05  3:42             ` Michael Heerdegen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).