unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal.
@ 2022-06-12  1:05 jgart via Guix-patches via
  2022-06-12  1:08 ` [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-terminal jgart via Guix-patches via
  2022-06-12 11:23 ` [bug#55916] [PATCH 1/2] " Liliana Marie Prikler
  0 siblings, 2 replies; 6+ messages in thread
From: jgart via Guix-patches via @ 2022-06-12  1:05 UTC (permalink / raw)
  To: 55916

Hi Guixers,

These two packages supports corfu in the terminal with doc popups and all.

all best,

jgart





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-terminal.
  2022-06-12  1:05 [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal jgart via Guix-patches via
@ 2022-06-12  1:08 ` jgart via Guix-patches via
  2022-06-12  1:08   ` [bug#55916] [PATCH 2/2] gnu: Add emacs-corfu-doc-terminal jgart via Guix-patches via
  2022-06-12 11:23 ` [bug#55916] [PATCH 1/2] " Liliana Marie Prikler
  1 sibling, 1 reply; 6+ messages in thread
From: jgart via Guix-patches via @ 2022-06-12  1:08 UTC (permalink / raw)
  To: 55916; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-corfu-terminal): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 469579792a..dff0d99632 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31656,6 +31656,34 @@ (define-public emacs-osm
 parallel fetching of tiles with cURL, and more.")
     (license license:gpl3+)))
 
+(define-public emacs-corfu-terminal
+  (let ((commit "7c5a8a1c07b6c1a41b358b083d5bf7773701d26b")
+        (revision "0"))
+    (package
+      (name "emacs-corfu-terminal")
+      (version (git-version "0.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://codeberg.org/akib/emacs-corfu-terminal")
+           (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0pk5vfcz8w4hiqrwzwpxdjzlbhla0bw7a1h6v0mqxad0j9y7v3nw"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+        (list emacs-corfu emacs-popon))
+      (home-page "https://codeberg.org/akib/emacs-corfu-terminal/")
+      (synopsis "Corfu popup in terminal")
+      (description
+"@code{emacs-corfu} uses child frames to display candidates.  This makes
+it unusable in the terminal.  @code{emacs-corfu-popup} replaces that with
+popup/popon, which works everywhere.  Use @code{M-x corfu-popup-mode}
+to enable.  You'll probably want to enable it only in the terminal.")
+      (license license:gpl3+))))
+
 (define-public emacs-popon
   ;; Upstream does not tag releases.  The commit below matches the version
   ;; bump.
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#55916] [PATCH 2/2] gnu: Add emacs-corfu-doc-terminal.
  2022-06-12  1:08 ` [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-terminal jgart via Guix-patches via
@ 2022-06-12  1:08   ` jgart via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: jgart via Guix-patches via @ 2022-06-12  1:08 UTC (permalink / raw)
  To: 55916; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-corfu-doc-terminal): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dff0d99632..eca0423216 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31684,6 +31684,34 @@ (define-public emacs-corfu-terminal
 to enable.  You'll probably want to enable it only in the terminal.")
       (license license:gpl3+))))
 
+(define-public emacs-corfu-doc-terminal
+  (let ((commit "d8945c64b52d76e864b767b3048674f222daf80b")
+        (revision "0"))
+    (package
+      (name "emacs-corfu-doc-terminal")
+      (version (git-version "0.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://codeberg.org/akib/emacs-corfu-doc-terminal")
+           (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0j0dd8np5x93wic22bc5i9h7bq2gj700n4fh11dzzgsj14lv2r5k"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+        (list emacs-corfu emacs-corfu-doc emacs-corfu-terminal emacs-popon))
+      (home-page "https://codeberg.org/akib/emacs-corfu-doc-terminal/")
+      (synopsis "Documentation popup in terminal provided by corfu")
+      (description
+"@code{emacs-corfu-doc} uses child frames to display
+candidates.  This makes @code{emacs-corfu-doc} unusable on
+terminal.  @code{emac-corfu-doc-terminal} replaces that with
+@code{emacs-popon}, which works everywhere.")
+      (license license:gpl3+))))
+
 (define-public emacs-popon
   ;; Upstream does not tag releases.  The commit below matches the version
   ;; bump.
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal.
  2022-06-12  1:05 [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal jgart via Guix-patches via
  2022-06-12  1:08 ` [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-terminal jgart via Guix-patches via
@ 2022-06-12 11:23 ` Liliana Marie Prikler
  2022-06-12 11:42   ` bug#55916: " Liliana Marie Prikler
  1 sibling, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2022-06-12 11:23 UTC (permalink / raw)
  To: jgart, 55916

Am Samstag, dem 11.06.2022 um 20:05 -0500 schrieb jgart:
> Hi Guixers,
> 
> These two packages supports corfu in the terminal with doc popups and
> all.
I cleaned up the definitions and pushed them.  Cheers




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#55916: [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal.
  2022-06-12 11:23 ` [bug#55916] [PATCH 1/2] " Liliana Marie Prikler
@ 2022-06-12 11:42   ` Liliana Marie Prikler
  2022-06-12 20:55     ` [bug#55916] " jgart via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2022-06-12 11:42 UTC (permalink / raw)
  To: jgart, 55916-done

Am Sonntag, dem 12.06.2022 um 13:23 +0200 schrieb Liliana Marie
Prikler:
> Am Samstag, dem 11.06.2022 um 20:05 -0500 schrieb jgart:
> > Hi Guixers,
> > 
> > These two packages supports corfu in the terminal with doc popups
> > and
> > all.
> I cleaned up the definitions and pushed them.  Cheers
Always forgetting to add -done...




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal.
  2022-06-12 11:42   ` bug#55916: " Liliana Marie Prikler
@ 2022-06-12 20:55     ` jgart via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: jgart via Guix-patches via @ 2022-06-12 20:55 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: 55916-done

On Sun, 12 Jun 2022 13:42:36 +0200 Liliana Marie Prikler <liliana.prikler@gmail.com> wrote:

Hi lilyp,

Thanks for taking the time to review and help with merging this package.

It's much appreciated.

all best,

jgart




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-06-12 20:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-12  1:05 [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-doc-terminal jgart via Guix-patches via
2022-06-12  1:08 ` [bug#55916] [PATCH 1/2] gnu: Add emacs-corfu-terminal jgart via Guix-patches via
2022-06-12  1:08   ` [bug#55916] [PATCH 2/2] gnu: Add emacs-corfu-doc-terminal jgart via Guix-patches via
2022-06-12 11:23 ` [bug#55916] [PATCH 1/2] " Liliana Marie Prikler
2022-06-12 11:42   ` bug#55916: " Liliana Marie Prikler
2022-06-12 20:55     ` [bug#55916] " jgart via Guix-patches via

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).