guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#50003] [PATCH] gnu: Add emacs-pcmpl-args.


From: Andrew Tropin
Subject: [bug#50003] [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

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]