From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44132) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e3IEp-00032b-BJ for guix-patches@gnu.org; Sat, 14 Oct 2017 04:56:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e3IEk-0000y9-Jm for guix-patches@gnu.org; Sat, 14 Oct 2017 04:56:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58359) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e3IEk-0000xl-FA for guix-patches@gnu.org; Sat, 14 Oct 2017 04:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e3IEk-0003JK-5n for guix-patches@gnu.org; Sat, 14 Oct 2017 04:56:02 -0400 Subject: [bug#28829] [PATCH] gnu: Add emacs-company-quickhelp. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44042) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e3IED-000302-Vv for guix-patches@gnu.org; Sat, 14 Oct 2017 04:55:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e3IE8-0000c4-VH for guix-patches@gnu.org; Sat, 14 Oct 2017 04:55:29 -0400 Received: from mail-lf0-x234.google.com ([2a00:1450:4010:c07::234]:51065) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e3IE8-0000a6-Mj for guix-patches@gnu.org; Sat, 14 Oct 2017 04:55:24 -0400 Received: by mail-lf0-x234.google.com with SMTP id a132so11957597lfa.7 for ; Sat, 14 Oct 2017 01:55:23 -0700 (PDT) Received: from magnolia ([178.71.225.184]) by smtp.gmail.com with ESMTPSA id 84sm684108ljc.67.2017.10.14.01.55.20 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 14 Oct 2017 01:55:20 -0700 (PDT) From: Oleg Pykhalov Date: Sat, 14 Oct 2017 11:55:19 +0300 Message-ID: <87r2u63y88.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-company-quickhelp.patch Content-Description: [PATCH] gnu: Add emacs-company-quickhelp. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28829@debbugs.gnu.org >From 3b82989997d7bf06fcdc07043a83aa7369dc82af Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Sat, 14 Oct 2017 11:53:59 +0300 Subject: [PATCH] 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 66f0a2ebe..b85c16044 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2352,6 +2352,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 a documentation for the +completion candidate.") + (license license:gpl3+))) + (define-public emacs-multiple-cursors (package (name "emacs-multiple-cursors") -- 2.14.2