[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31500] [PATCH 10/20] gnu: Add emacs-helm-company.
From: |
Pierre Neidhardt |
Subject: |
[bug#31500] [PATCH 10/20] gnu: Add emacs-helm-company. |
Date: |
Tue, 22 May 2018 12:41:23 +0200 |
* gnu/packages/emacs.scm (emacs-helm-company): New variable.
---
gnu/packages/emacs.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 595be5bbf..f68b280f0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10754,3 +10754,34 @@ Default UI or Smooth UI. Please read the source of
@code{google-translate-default-ui.el} and @code{google-translate-smooth-ui.el}
for more details.")
(license license:gpl3+)))
+
+(define-public emacs-helm-company
+ (package
+ (name "emacs-helm-company")
+ (version "20180213.1405")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://melpa.org/packages/helm-company-"
+ version
+ ".el"))
+ (sha256
+ (base32
+ "02b0s24rjjj36c95zrl2vysbh9pcx70rja0n7k0vys7n4hwwm648"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-company" ,emacs-company)))
+ (home-page
+ "https://github.com/Sodel-the-Vociferous/helm-company")
+ (synopsis "Helm interface for company-mode")
+ (description
+ "Add the following to your Emacs init file:
address@hidden
+(autoload 'helm-company \"helm-company\") ;; Not necessary if using ELPA
package
+(eval-after-load 'company
+ '(progn
+ (define-key company-mode-map (kbd \"C-:\") 'helm-company)
+ (define-key company-active-map (kbd \"C-:\") 'helm-company)))}")
+ (license license:gpl3+)))
--
2.17.0
- [bug#31500] [PATCH 02/20] gnu: Add emacs-evil-ediff., (continued)
- [bug#31500] [PATCH 02/20] gnu: Add emacs-evil-ediff., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 04/20] gnu: Add emacs-evil-mu4e., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 03/20] gnu: Add emacs-evil-magit., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 05/20] gnu: Add emacs-evil-multiedit., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 06/20] gnu: Add emacs-evil-org., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 07/20] gnu: Add emacs-fish-completion., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 08/20] gnu: Add emacs-gif-screencast., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 09/20] gnu: Add emacs-google-translate., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 12/20] gnu: Add emacs-helm-emms., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 14/20] gnu: Add emacs-helm-flycheck., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 10/20] gnu: Add emacs-helm-company.,
Pierre Neidhardt <=
- [bug#31500] [PATCH 11/20] gnu: Add emacs-helm-descbinds., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 13/20] gnu: Add emacs-helm-exwm., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 15/20] gnu: Add emacs-helm-ls-git., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 16/20] gnu: Add emacs-helm-mu., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 18/20] gnu: Add emacs-image+., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 19/20] gnu: Add emacs-package-lint., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 17/20] gnu: Add emacs-helm-pass., Pierre Neidhardt, 2018/05/22
- [bug#31500] [PATCH 20/20] gnu: Add Add emacs-wgrep-helm., Pierre Neidhardt, 2018/05/22