From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 4/6] gnu: Add emacs-ace-window. Date: Sun, 19 Jun 2016 20:16:49 +0300 Message-ID: <87r3bt85fi.fsf@gmail.com> References: <20160618161544.3643-1-rekado@elephly.net> <20160618161544.3643-4-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEgLA-0000bX-QD for guix-devel@gnu.org; Sun, 19 Jun 2016 13:16:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bEgL4-0003Ou-MQ for guix-devel@gnu.org; Sun, 19 Jun 2016 13:16:55 -0400 Received: from mail-lf0-x242.google.com ([2a00:1450:4010:c07::242]:33581) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bEgL4-0003Oo-E6 for guix-devel@gnu.org; Sun, 19 Jun 2016 13:16:50 -0400 Received: by mail-lf0-x242.google.com with SMTP id l188so3616330lfe.0 for ; Sun, 19 Jun 2016 10:16:50 -0700 (PDT) In-Reply-To: <20160618161544.3643-4-rekado@elephly.net> (Ricardo Wurmus's message of "Sat, 18 Jun 2016 18:15:42 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ricardo Wurmus Cc: guix-devel@gnu.org Ricardo Wurmus (2016-06-18 19:15 +0300) wrote: > * gnu/packages/emacs.scm (emacs-ace-window): New variable. > --- > gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ > 1 file changed, 25 insertions(+) > > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 5158059..7104165 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1804,6 +1804,31 @@ such as > @end enumerate\n") > (license license:gpl3+))) > > +(define-public emacs-ace-window > + (package > + (name "emacs-ace-window") > + (version "0.9.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/abo-abo/ace-window/archive/" > + version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn")))) > + (build-system emacs-build-system) > + (propagated-inputs > + `(("emacs-avy" ,emacs-avy))) > + (home-page "https://github.com/abo-abo/ace-window") > + (synopsis "Quickly switch windows") I don't have comments on this package except for the same question about mentioning "Emacs". Maybe: "Quickly switch windows in Emacs"? > + (description > + "@code{ace-window} is meant to replace @code{other-window}. > +In fact, when there are only two windows present, @code{other-window} is > +called. If there are more, each window will have its first character > +highlighted. Pressing that character will switch to that window.") > + (license license:gpl3+))) > + > (define-public emacs-clojure-mode > (package > (name "emacs-clojure-mode") -- Alex