[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add vim-asyncrun.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add vim-asyncrun. |
Date: |
Mon, 09 Mar 2020 08:48:20 -0400 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new fb29d7d gnu: Add vim-asyncrun.
fb29d7d is described below
commit fb29d7d70cc1f477ce323b5cb3d820547fe23a59
Author: Efraim Flashner <address@hidden>
AuthorDate: Tue Feb 25 18:07:52 2020 +0200
gnu: Add vim-asyncrun.
* gnu/packages/vim.scm (vim-asyncrun): New variable.
---
gnu/packages/vim.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index b468347..5b03124 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -847,3 +847,28 @@ through its msgpack-rpc API.")
(synopsis "Guix integration in Vim")
(description "This package provides support for GNU Guix in Vim.")
(license license:vim)))
+
+(define-public vim-asyncrun
+ (package
+ (name "vim-asyncrun")
+ (version "2.6.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/skywind3000/asyncrun.vim")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1n0yzv8psskhx8h4g7dz64h2llm9mnljhvl4hrnsjx6znkni8vwp"))))
+ (build-system copy-build-system)
+ (arguments
+ '(#:install-plan
+ '(("plugin" "share/vim/vimfiles/")
+ ("doc/" "share/vim/vimfiles/doc" #:include ("asyncrun.txt")))))
+ (home-page "https://github.com/skywind3000/asyncrun.vim")
+ (synopsis "Run Async Shell Commands in Vim")
+ (description "This plugin takes the advantage of new APIs in Vim 8 (and
+NeoVim) to enable you to run shell commands in background and read output in
the
+quickfix window in realtime.")
+ (license license:expat)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add vim-asyncrun.,
guix-commits <=