From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:60778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hGRW3-0006Z3-OL for guix-patches@gnu.org; Tue, 16 Apr 2019 13:05:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hGRW2-00035Q-HU for guix-patches@gnu.org; Tue, 16 Apr 2019 13:05:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52629) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hGRW2-00035M-CM for guix-patches@gnu.org; Tue, 16 Apr 2019 13:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hGRW2-0005ih-2K for guix-patches@gnu.org; Tue, 16 Apr 2019 13:05:02 -0400 Subject: bug#34994: [PATCH] gnu: Add emacs-ace-link. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: Date: Tue, 16 Apr 2019 19:04:26 +0200 In-Reply-To: (mikadozero@yandex.com's message of "Mon, 25 Mar 2019 21:22:40 -0400") Message-ID: <87sguhevad.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: mikadoZero Cc: 34994-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable mikadoZero skribis: >>>From 88fa9952ab4ce2e8b9d77ca55fd93c9e70936d02 Mon Sep 17 00:00:00 2001 > From: mikadoZero > Date: Mon, 25 Mar 2019 19:39:09 -0400 > Subject: [PATCH] gnu: Add emacs-ace-link. > > * gnu/packages/emacs-xyz.scm (emacs-ace-link): New variable. Applied with the tiny changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 1161630b52..7aec695205 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1161,9 +1161,9 @@ within a specified width. It is useful for displaying long track titles.") (home-page "https://github.com/abo-abo/ace-link") (synopsis "Quickly follow links in Emacs") (description - "Currently, to jump to a link in a @file{Info-mode}, @file{help-mode}, - @file{woman-mode}, @file{org-mode}, @file{eww-mode}, @file{compilation-mode}, - @file{goto-address-mode} buffer, you can tab through the links to select the + "Currently, to jump to a link in a @code{Info-mode}, @code{help-mode}, +@code{woman-mode}, @code{org-mode}, @code{eww-mode}, @code{compilation-mode}, +@code{goto-address-mode} buffer, you can tab through the links to select the one you want. This is an O(N) operation, where the N is the amount of links. This package turns this into an O(1) operation. It does so by assigning a letter to each link using avy.") --=-=-=--