From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56091) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hfOMG-0006Sz-8D for guix-patches@gnu.org; Mon, 24 Jun 2019 08:46:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hfOMF-00071A-27 for guix-patches@gnu.org; Mon, 24 Jun 2019 08:46:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42225) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hfOME-00070h-Rf for guix-patches@gnu.org; Mon, 24 Jun 2019 08:46:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hfOME-0005K6-NJ for guix-patches@gnu.org; Mon, 24 Jun 2019 08:46:02 -0400 Subject: [bug#36353] (no subject) Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:56022) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hfOLt-0006ID-Dt for guix-patches@gnu.org; Mon, 24 Jun 2019 08:45:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hfOLq-0005cz-LU for guix-patches@gnu.org; Mon, 24 Jun 2019 08:45:41 -0400 Received: from mx.kolabnow.com ([95.128.36.42]:31204) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hfOLq-0005VZ-Aq for guix-patches@gnu.org; Mon, 24 Jun 2019 08:45:38 -0400 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out001.mykolab.com (Postfix) with ESMTP id 626923C0 for ; Mon, 24 Jun 2019 14:45:35 +0200 (CEST) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out001.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GgPS5gGcu5lh for ; Mon, 24 Jun 2019 14:45:34 +0200 (CEST) Received: from int-mx002.mykolab.com (unknown [10.9.13.2]) by ext-mx-out001.mykolab.com (Postfix) with ESMTPS id A9D501CF for ; Mon, 24 Jun 2019 14:45:34 +0200 (CEST) Received: from ext-subm001.mykolab.com (unknown [10.9.6.1]) by int-mx002.mykolab.com (Postfix) with ESMTPS id 660052C8A for ; Mon, 24 Jun 2019 14:45:34 +0200 (CEST) From: Joseph LaFreniere Date: Mon, 24 Jun 2019 07:45:29 -0500 Message-ID: <87wohbw3rq.fsf@odyssey.lafreniere.xyz> MIME-Version: 1.0 Content-Type: text/plain; format=flowed 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: 36353@debbugs.gnu.org Subject: [PATCH] gnu: Add emacs-minions. Date: Sun, 23 Jun 2019 02:53:22 -0500 >From e7980e5e582d937301ea5fe0d76f57360cadc0ed Mon Sep 17 00:00:00 2001 * gnu/packages/emacs-xyz.scm (emacs-minions): New variable. --- gnu/packages/emacs-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 238b204b3c..bc261130b8 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -433,6 +433,38 @@ these arguments. The prototypical use is for the command to call an external process, passing on the arguments as command line arguments.") (license license:gpl3+))) +(define-public emacs-minions + (package + (name "emacs-minions") + (version "0.3.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tarsius/minions.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q2y37zfxlbfvgdn70ikg3abp8vljna4ir9nyqlz1awmz5i1c43s")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash))) + (home-page "https://github.com/tarsius/minions") + (synopsis "Minor-mode menu for the mode line") + (description + "This package implements a menu that lists enabled minor-modes, as well +as commonly but not currently enabled minor-modes. It can be used to toggle +local and global minor-modes, to access mode-specific menus, and to get help +about modes. + +This menu is intended as a replacement for the incomplete yet wide list of +enabled minor-modes that is displayed in the mode line by default. To use the +menu like this, enable Minions mode. + +Alternatively the menu can be bound globally, for example: +@code{(global-set-key [S-down-mouse-3] 'minions-minor-modes-menu)}.") + (license license:gpl3+))) + (define-public emacs-treepy (package (name "emacs-treepy") -- 2.22.0