guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-company-quickhelp.


From: Oleg Pykhalov
Subject: 01/01: gnu: Add emacs-company-quickhelp.
Date: Tue, 31 Oct 2017 08:02:33 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 016590a951b901790d558b59cf74bf4ccd1621a5
Author: Oleg Pykhalov <address@hidden>
Date:   Sat Oct 14 11:53:59 2017 +0300

    gnu: Add emacs-company-quickhelp.
    
    * gnu/packages/emacs.scm (emacs-company-quickhelp): New variable.
---
 gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1278194..c47c0ef 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -2362,6 +2362,30 @@ front-ends.  Company comes with many back-ends, e.g. 
@code{company-elisp}.
 These are distributed in separate files and can be used individually.")
     (license license:gpl3+)))
 
+(define-public emacs-company-quickhelp
+  (package
+    (name "emacs-company-quickhelp")
+    (version "2.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/expez/company-quickhelp/archive/";
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-pos-tip" ,emacs-pos-tip)
+       ("emacs-company" ,emacs-company)))
+    (home-page "https://github.com/expez/company-quickhelp";)
+    (synopsis "Popup documentation for completion candidates")
+    (description "@code{company-quickhelp} shows documentation for the
+completion candidate when using the Company text completion framework.")
+    (license license:gpl3+)))
+
 (define-public emacs-multiple-cursors
   (package
     (name "emacs-multiple-cursors")



reply via email to

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