From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL4k7-0002Vk-4E for guix-patches@gnu.org; Tue, 22 May 2018 06:42:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL4k6-0005zU-9h for guix-patches@gnu.org; Tue, 22 May 2018 06:42:11 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35797) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL4k6-0005zC-6h for guix-patches@gnu.org; Tue, 22 May 2018 06:42:10 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL4k6-0004xO-0p for guix-patches@gnu.org; Tue, 22 May 2018 06:42:10 -0400 Subject: [bug#31500] [PATCH 13/20] gnu: Add emacs-helm-exwm. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL4jk-0002BK-L1 for guix-patches@gnu.org; Tue, 22 May 2018 06:41:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL4jj-0005fy-Tg for guix-patches@gnu.org; Tue, 22 May 2018 06:41:48 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:38948) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL4jj-0005ej-OH for guix-patches@gnu.org; Tue, 22 May 2018 06:41:47 -0400 Received: by mail-wm0-x229.google.com with SMTP id f8-v6so32205907wmc.4 for ; Tue, 22 May 2018 03:41:47 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id 67-v6sm22437230wmw.32.2018.05.22.03.41.45 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 22 May 2018 03:41:46 -0700 (PDT) From: Pierre Neidhardt Date: Tue, 22 May 2018 12:41:26 +0200 Message-Id: <20180522104133.26049-13-ambrevar@gmail.com> In-Reply-To: <20180522104133.26049-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> <20180522104133.26049-1-ambrevar@gmail.com> 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: 31500@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-helm-exwm): New variable. --- gnu/packages/emacs.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 0bcf28046..b3593e524 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10839,3 +10839,40 @@ searched for and execute it, or view it's documentation.") (description "Helm interface for Emms to browse all tracks and all folders from @code{emms-source-file-default-directory}.") (license license:gpl3+))) + +(define-public emacs-helm-exwm + (package + (name "emacs-helm-exwm") + (version "20180301.958") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/helm-exwm-" + version + ".el")) + (sha256 + (base32 + "00hm42mkjradg45j6q4w8kzbjg1kylka39vazs1b9wjm82ppnsdh")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-helm" ,emacs-helm) + ("emacs-exwm" ,emacs-exwm))) + (home-page + "https://github.com/emacs-helm/helm-exwm") + (synopsis "Helm for EXWM buffers") + (description + "@code{helm-exwm} runs a Helm session over the list of EXWM buffers. +To separate EXWM buffers from Emacs buffers in @code{helm-mini}, set up the sources as follows: +@code{ + (setq helm-exwm-emacs-buffers-source (helm-exwm-build-emacs-buffers-source)) + (setq helm-exwm-source (helm-exwm-build-source)) + (setq helm-mini-default-sources `(helm-exwm-emacs-buffers-source + helm-exwm-source + helm-source-recentf) +} +@code{helm-exwm-switch} is a convenience X application launcher using Helm to +switch between the various windows of one or several specific applications. +See @code{helm-exwm-switch-browser} for an example. +") + (license license:gpl3+))) -- 2.17.0