From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:55809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFkAd-0007yQ-KN for guix-patches@gnu.org; Sun, 14 Apr 2019 14:48:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFkAc-0006id-I1 for guix-patches@gnu.org; Sun, 14 Apr 2019 14:48:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47855) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hFkAc-0006iL-Cu for guix-patches@gnu.org; Sun, 14 Apr 2019 14:48:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hFkAc-0001iR-4P for guix-patches@gnu.org; Sun, 14 Apr 2019 14:48:02 -0400 Subject: [bug#35278] Add emacs-ace-jump-mode Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:55770) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFkAR-0007wG-0q for guix-patches@gnu.org; Sun, 14 Apr 2019 14:47:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFkAP-0006cU-W3 for guix-patches@gnu.org; Sun, 14 Apr 2019 14:47:50 -0400 Received: from sonic302-21.consmr.mail.ir2.yahoo.com ([87.248.110.84]:36962) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hFkAP-0006av-4j for guix-patches@gnu.org; Sun, 14 Apr 2019 14:47:49 -0400 Received: from ip5f5acaf3.dynamic.kabel-deutschland.de (EHLO finkpad) ([95.90.202.243]) by smtp407.mail.ir2.yahoo.com (Oath Hermes SMTP Server) with ESMTPA ID 61db1a3067942a38e003eb07fe10e5fa for ; Sun, 14 Apr 2019 18:47:43 +0000 (UTC) From: Tim Gesthuizen Date: Sun, 14 Apr 2019 20:47:41 +0200 Message-ID: <878swch19u.fsf@yahoo.de> 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: 35278@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi, I packaged emacs-ace-jump-mode, a small package for navigation in Emacs. It would be nice if we could add to Guix. However: The licensing notice in the source file is copied out of Emacs. I don't know whether that is ok. Tim. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-ace-jump-mode.patch >From 3ee0e4071e8063f6404f8e7c43f175a80f652112 Mon Sep 17 00:00:00 2001 From: Tim Gesthuizen Date: Sat, 13 Apr 2019 13:46:05 +0200 Subject: [PATCH] gnu: Add emacs-ace-jump-mode * gnu/packages/emacs-xyz.scm (emacs-ace-jump-mode): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c8cd3a7ed5..844f870809 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -722,6 +722,28 @@ can take association lists, hash tables, and in some cases vectors (where the index is considered the key).") (license license:gpl3+))) +(define-public emacs-ace-jump-mode + (package + (name "emacs-ace-jump-mode") + (version "2.0") + (home-page "https://github.com/winterTTr/ace-jump-mode") + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append + home-page ".git")) + (commit (string-append "v" version)))) + (sha256 (base32 "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb")))) + (build-system emacs-build-system) + (synopsis "Cursor location minor mode for fast navigation") + (description "ace-jump-mode is a fast/direct cursor location minor +mode. It will create the N-Branch search tree internal and marks all +the possible position with predefined keys in within the whole emacs +view. Allowing you to move to the character/word/line almost +directly.") + (license license:gpl3+))) + (define-public emacs-anaphora (package (name "emacs-anaphora") -- 2.21.0 --=-=-=--