[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: Add vim-neocomplete.
From: |
Kei Kebreau |
Subject: |
01/08: gnu: Add vim-neocomplete. |
Date: |
Tue, 28 Feb 2017 12:26:19 -0500 (EST) |
kkebreau pushed a commit to branch master
in repository guix.
commit 8bb7b4f5179629f92af429bad63a48073ac29484
Author: ng0 <address@hidden>
Date: Tue Feb 14 13:18:19 2017 +0000
gnu: Add vim-neocomplete.
* gnu/packages/vim.scm (vim-neocomplete): New variable.
Signed-off-by: Kei Kebreau <address@hidden>
---
gnu/packages/vim.scm | 43 ++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 42 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index cdb32ac..a683537 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Cyril Roelandt <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016, 2017 ng0 <address@hidden>
;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
;;;
;;; This file is part of GNU Guix.
@@ -158,6 +158,47 @@ configuration files.")
("tcl" ,tcl)
,@(package-inputs vim)))))
+(define-public vim-neocomplete
+ (package
+ (name "vim-neocomplete")
+ (version "2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/Shougo/neocomplete.vim/"
+ "archive/ver." version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1307gbrdwam2akq9w2lpijc41740i4layk2qkd9sjkqxfch5lni2"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'build)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (vimfiles (string-append out "/share/vim/vimfiles"))
+ (autoload (string-append vimfiles "/autoload"))
+ (doc (string-append vimfiles "/doc"))
+ (plugin (string-append vimfiles "/plugin")))
+ (copy-recursively "autoload" autoload)
+ (copy-recursively "doc" doc)
+ (copy-recursively "plugin" plugin)
+ #t))))))
+ (synopsis "Next generation completion framework for Vim")
+ (description
+ "@code{neocomplete}, an abbreviation of 'neo-completion with cache',
+is a plugin for Vim.
+It provides keyword completion system by maintaining a cache of keywords in
+the current buffer. Neocomplete can be customized easily and has many more
+features than Vim's built-in completion.")
+ (home-page "https://github.com/Shougo/neocomplete.vim/")
+ (license license:expat)))
+
(define-public neovim
(package
(name "neovim")
- branch master updated (a995251 -> b02a141), Kei Kebreau, 2017/02/28
- 08/08: gnu: Add vim-airline-themes., Kei Kebreau, 2017/02/28
- 06/08: gnu: Add vim-context-filetype., Kei Kebreau, 2017/02/28
- 02/08: gnu: Add vim-scheme., Kei Kebreau, 2017/02/28
- 01/08: gnu: Add vim-neocomplete.,
Kei Kebreau <=
- 03/08: gnu: Add vim-neosnippet-snippets., Kei Kebreau, 2017/02/28
- 07/08: gnu: Add vim-airline., Kei Kebreau, 2017/02/28
- 05/08: gnu: Add vim-luna., Kei Kebreau, 2017/02/28
- 04/08: gnu: Add vim-neosnippet., Kei Kebreau, 2017/02/28