--- Begin Message ---
Subject: |
[PATCH] gnu: Add emacs-pcmpl-args. |
Date: |
Wed, 11 Aug 2021 12:33:03 +0300 |
* gnu/packages/emacs-xyz.scm (emacs-pcmpl-args): New variable.
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 172d620adc..2c71875baf 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29183,3 +29183,25 @@ current region or entire buffer.")
It includes syntax highlighting, automatic indentation, and imenu integration.
Unlike Emacs' generic ASM mode, it understands NASM-specific syntax.")
(license license:unlicense)))
+
+(define-public emacs-pcmpl-args
+ (package
+ (name "emacs-pcmpl-args")
+ (version "0.1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JonWaltman/pcmpl-args.el")
+ (commit version)))
+ (sha256
+ (base32 "19xwwpfcf0l9jh7xixyjd5adivj27jw00zvxb7n1240k5p332pzi"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/JonWaltman/pcmpl-args.el")
+ (synopsis "Enhanced shell command completion")
+ (description "The pcmpl-args package extends option and argument
+completion of shell commands read by Emacs. It is intended to make shell
+completion in Emacs comparable to the rather excellent completion provided by
+both Bash and Zsh.")
+ (license license:gpl3+)))
--
2.32.0
signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Subject: |
Re: [bug#50003] [PATCH] gnu: Add emacs-pcmpl-args. |
Date: |
Wed, 18 Aug 2021 19:08:37 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |
Hello,
Andrew Tropin <andrew@trop.in> writes:
> * gnu/packages/emacs-xyz.scm (emacs-pcmpl-args): New variable.
Applied (at a different location in the "emacs-xyz.scm" file).
Thank you.
Regards,
--
Nicolas Goaziou
--- End Message ---