From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38797) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j6cmZ-0002BU-Lf for guix-patches@gnu.org; Tue, 25 Feb 2020 11:10:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j6cmY-0000B0-9U for guix-patches@gnu.org; Tue, 25 Feb 2020 11:10:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50050) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j6cmY-0000Af-5U for guix-patches@gnu.org; Tue, 25 Feb 2020 11:10:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j6cmX-0005Zo-VW for guix-patches@gnu.org; Tue, 25 Feb 2020 11:10:01 -0500 Subject: [bug#39788] [PATCH] gnu: Add vim-asyncrun. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:38742) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j6cm9-00016B-1W for guix-patches@gnu.org; Tue, 25 Feb 2020 11:09:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j6cm7-0008Eg-UX for guix-patches@gnu.org; Tue, 25 Feb 2020 11:09:36 -0500 Received: from flashner.co.il ([178.62.234.194]:42106) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j6cm7-0007pk-Or for guix-patches@gnu.org; Tue, 25 Feb 2020 11:09:35 -0500 From: Efraim Flashner Date: Tue, 25 Feb 2020 18:08:29 +0200 Message-Id: <20200225160829.13883-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 39788@debbugs.gnu.org Cc: Efraim Flashner * gnu/packages/vim.scm (vim-asyncrun): New variable. --- gnu/packages/vim.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 67f245b26d..5448aaa1b8 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -31,6 +31,7 @@ #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix build-system cmake) + #:use-module (guix build-system copy) #:use-module (guix build-system gnu) #:use-module (guix build-system python) #:use-module (gnu packages) @@ -983,3 +984,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.4.9") + (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 + "0z64pkf37h3daqkry54ci3ars9wkrjskblgfpn29cwgmqg55n76n"))= )) + (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 outpu= t in the +quickfix window in realtime.") + (license license:expat))) --=20 2.25.1