unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#53813] [PATCH] gnu: Add emacs-consult-dir.
@ 2022-02-06  4:58 Andrew Tropin
  2022-02-06  9:46 ` Maxime Devos
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andrew Tropin @ 2022-02-06  4:58 UTC (permalink / raw)
  To: 53813

[-- Attachment #1: Type: text/plain, Size: 1668 bytes --]


* gnu/packages/emacs-xyz.scm (emacs-consult-dir): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 444b761116..6bdfb8de04 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -30090,3 +30090,28 @@ (define-public emacs-fennel-mode
      "Fennel mode provides font-lock, indentation, navigation, and REPL for
  Fennel code within Emacs.")
     (license license:gpl3+)))
+
+(define-public emacs-consult-dir
+  (package
+   (name "emacs-consult-dir")
+   (version "0.1")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/karthink/consult-dir")
+                  (commit (string-append "v" version))))
+            (sha256
+             (base32 "1cff4ssrn1mw2s5n090pdmwdirnfih8idg5f0ll2bi2djc4hq5kn"))
+            (file-name (git-file-name name version))))
+   (build-system emacs-build-system)
+   (license license:gpl3+)
+   (propagated-inputs (list emacs-consult))
+   (home-page "https://github.com/karthink/consult-dir")
+   (synopsis "Insert paths into minibuffer prompts in Emacs")
+   (description "Consult-dir allows you to easily insert directory
+paths into the minibuffer prompt in Emacs.
+
+When using the minibuffer, you can switch - with completion and
+filtering provided by your completion setup - to any directory you’ve
+visited recently, or to a project or bookmarked directory. The
+minibuffer prompt will be replaced with the directory you choose.")))
-- 
2.34.0


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 853 bytes --]

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

* [bug#53813] [PATCH] gnu: Add emacs-consult-dir.
  2022-02-06  4:58 [bug#53813] [PATCH] gnu: Add emacs-consult-dir Andrew Tropin
@ 2022-02-06  9:46 ` Maxime Devos
  2022-02-06 22:13 ` bug#53813: " Nicolas Goaziou
       [not found] ` <handler.53813.D53813.164418561927497.notifdone@debbugs.gnu.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Maxime Devos @ 2022-02-06  9:46 UTC (permalink / raw)
  To: Andrew Tropin, 53813

[-- Attachment #1: Type: text/plain, Size: 404 bytes --]

Andrew Tropin schreef op zo 06-02-2022 om 07:58 [+0300]:
> +When using the minibuffer, you can switch - with completion and
> +filtering provided by your completion setup - to any directory
> you’ve

Typographically, these should be two or three dashes (or a fancy
unicode em dash or figure dash, not sure which one exactly), not a
single dash, typographically speaking.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* bug#53813: [PATCH] gnu: Add emacs-consult-dir.
  2022-02-06  4:58 [bug#53813] [PATCH] gnu: Add emacs-consult-dir Andrew Tropin
  2022-02-06  9:46 ` Maxime Devos
@ 2022-02-06 22:13 ` Nicolas Goaziou
       [not found] ` <handler.53813.D53813.164418561927497.notifdone@debbugs.gnu.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2022-02-06 22:13 UTC (permalink / raw)
  To: Andrew Tropin; +Cc: 53813-done

Hello,

Andrew Tropin <andrew@trop.in> writes:

> * gnu/packages/emacs-xyz.scm (emacs-consult-dir): New variable.

Thank you.

I fixed indentation, typographic issues in the description and moved the
package definition elsewhere than at the bottom of the module.

Applied!

Regards,
-- 
Nicolas Goaziou




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

* [bug#53813] closed (Re: [bug#53813] [PATCH] gnu: Add emacs-consult-dir.)
       [not found] ` <handler.53813.D53813.164418561927497.notifdone@debbugs.gnu.org>
@ 2022-02-07 15:12   ` Andrew Tropin
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Tropin @ 2022-02-07 15:12 UTC (permalink / raw)
  To: 53813

[-- Attachment #1: Type: text/plain, Size: 3107 bytes --]

On 2022-02-06 22:14, GNU bug Tracking System wrote:

> Your bug report
>
> #53813: [PATCH] gnu: Add emacs-consult-dir.
>
> which was filed against the guix-patches package, has been closed.
>
> The explanation is attached below, along with your original report.
> If you require more details, please reply to 53813@debbugs.gnu.org.
>
> -- 
> 53813: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=53813
> GNU Bug Tracking System
> Contact help-debbugs@gnu.org with problems
> From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
> Subject: Re: [bug#53813] [PATCH] gnu: Add emacs-consult-dir.
> To: Andrew Tropin <andrew@trop.in>
> Cc: 53813-done@debbugs.gnu.org
> Date: Sun, 06 Feb 2022 23:13:30 +0100
>
> Hello,
>
> Andrew Tropin <andrew@trop.in> writes:
>
>> * gnu/packages/emacs-xyz.scm (emacs-consult-dir): New variable.
>
> Thank you.
>
> I fixed indentation, typographic issues in the description and moved the
> package definition elsewhere than at the bottom of the module.
>
> Applied!

Oops, I'm a little bit late.  Thank you very much for fixing it!)

Maxime, thank you for catching the issue :)

>
> Regards,
> -- 
> Nicolas Goaziou
>
> From: Andrew Tropin <andrew@trop.in>
> Subject: [PATCH] gnu: Add emacs-consult-dir.
> To: guix-patches@gnu.org
> Date: Sun, 06 Feb 2022 07:58:46 +0300
>
>
> * gnu/packages/emacs-xyz.scm (emacs-consult-dir): New variable.
> ---
>  gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 444b761116..6bdfb8de04 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -30090,3 +30090,28 @@ (define-public emacs-fennel-mode
>       "Fennel mode provides font-lock, indentation, navigation, and REPL for
>   Fennel code within Emacs.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-consult-dir
> +  (package
> +   (name "emacs-consult-dir")
> +   (version "0.1")
> +   (source (origin
> +            (method git-fetch)
> +            (uri (git-reference
> +                  (url "https://github.com/karthink/consult-dir")
> +                  (commit (string-append "v" version))))
> +            (sha256
> +             (base32 "1cff4ssrn1mw2s5n090pdmwdirnfih8idg5f0ll2bi2djc4hq5kn"))
> +            (file-name (git-file-name name version))))
> +   (build-system emacs-build-system)
> +   (license license:gpl3+)
> +   (propagated-inputs (list emacs-consult))
> +   (home-page "https://github.com/karthink/consult-dir")
> +   (synopsis "Insert paths into minibuffer prompts in Emacs")
> +   (description "Consult-dir allows you to easily insert directory
> +paths into the minibuffer prompt in Emacs.
> +
> +When using the minibuffer, you can switch - with completion and
> +filtering provided by your completion setup - to any directory you’ve
> +visited recently, or to a project or bookmarked directory. The
> +minibuffer prompt will be replaced with the directory you choose.")))

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 853 bytes --]

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

end of thread, other threads:[~2022-02-07 15:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-06  4:58 [bug#53813] [PATCH] gnu: Add emacs-consult-dir Andrew Tropin
2022-02-06  9:46 ` Maxime Devos
2022-02-06 22:13 ` bug#53813: " Nicolas Goaziou
     [not found] ` <handler.53813.D53813.164418561927497.notifdone@debbugs.gnu.org>
2022-02-07 15:12   ` [bug#53813] closed (Re: [bug#53813] [PATCH] gnu: Add emacs-consult-dir.) Andrew Tropin

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).