From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:45348) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTXLj-0000m3-KO for guix-patches@gnu.org; Tue, 28 Apr 2020 17:01:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jTXLi-00034U-SZ for guix-patches@gnu.org; Tue, 28 Apr 2020 17:01:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58450) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jTXLi-00034P-E2 for guix-patches@gnu.org; Tue, 28 Apr 2020 17:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jTXLi-0004MA-Cx for guix-patches@gnu.org; Tue, 28 Apr 2020 17:01:02 -0400 Subject: [bug#40947] Add emacs-boon Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:35466) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTWMm-000310-6J for guix-patches@gnu.org; Tue, 28 Apr 2020 15:58:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jTWMl-0007Nd-Bb for guix-patches@gnu.org; Tue, 28 Apr 2020 15:58:03 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:48417) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jTWMh-0007NS-Iq for guix-patches@gnu.org; Tue, 28 Apr 2020 15:58:02 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 9403D5C0322 for ; Tue, 28 Apr 2020 15:57:57 -0400 (EDT) Received: from [192.168.1.110] (c-73-98-80-238.hsd1.nm.comcast.net [73.98.80.238]) by mail.messagingengine.com (Postfix) with ESMTPA id D5AB53065EC8 for ; Tue, 28 Apr 2020 15:57:56 -0400 (EDT) Date: Tue, 28 Apr 2020 13:57:48 -0600 From: Elais Player Message-Id: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-5g73m3o8w0RSE3plt/OO" 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: 40947@debbugs.gnu.org --=-5g73m3o8w0RSE3plt/OO Content-Type: multipart/alternative; boundary="=-MSxc25UCeYbugmwuI0Sf" --=-MSxc25UCeYbugmwuI0Sf Content-Type: text/plain; charset=us-ascii; format=flowed Hi, This patch adds the boon modal editing package --=-MSxc25UCeYbugmwuI0Sf Content-Type: text/html; charset=us-ascii
Hi,

This patch adds the boon modal editing package
--=-MSxc25UCeYbugmwuI0Sf-- --=-5g73m3o8w0RSE3plt/OO Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Add-emacs-boon-package.patch Content-Transfer-Encoding: quoted-printable >From 809ed7f518f2cc6b8774ab54c4e0ec35285ed21c Mon Sep 17 00:00:00 2001 From: Elais Player Date: Tue, 28 Apr 2020 13:44:00 -0600 Subject: [PATCH 1/1] Add emacs-boon package This patch adds boon modal editing packages. --- 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 2c61c4189d..13d539e607 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -68,6 +68,7 @@ ;;; Copyright =C2=A9 2020 John Soo ;;; Copyright =C2=A9 2020 J=C3=A9r=C3=A9my Korwin-Zmijowski ;;; Copyright =C2=A9 2020 Alberto Eleuterio Flores Guerrero +;;; Copyright =C2=A9 2020 Elais Player ;;; ;;; This file is part of GNU Guix. ;;; @@ -22662,3 +22663,34 @@ deleting them with @code{(setq delete-by-moving-to= -trash t)}. This package provides a simple but convenient user interface to manage those trashed files.") (license license:gpl3+))) + +(define-public emacs-boon + (package + (name "emacs-boon") + (version "1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jyp/boon/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-expand-region" ,emacs-expand-region) + ("spaceline" ,emacs-spaceline) + ("powerline" ,emacs-powerline) + ("emacs-dash" ,emacs-dash) + ("emacs-multiple-cursors" ,emacs-multiple-cursors))) + (home-page "https://github.com/jyp/boon") + (synopsis "Ergonomic Command Mode for Emacs.") + (description + "Boon brings modal editing capabilities to Emacs and... + +- It tries to be as ergonomic as possible. +- It remains lightweight (~300 loc for its core.) +- It attempts to integrate with Emacs as smoothly as possible") + (license license:gpl3))) --=20 2.26.2 --=-5g73m3o8w0RSE3plt/OO--