guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: Add vim-jedi-vim.


From: guix-commits
Subject: 06/06: gnu: Add vim-jedi-vim.
Date: Sun, 26 Nov 2023 04:07:25 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 513bf164592e2b44e3e556cc5099a19bd6977790
Author: Nguyễn Gia Phong <mcsinyx@disroot.org>
AuthorDate: Sun Nov 19 22:19:19 2023 +0900

    gnu: Add vim-jedi-vim.
    
    * gnu/packages/vim.scm (vim-jedi-vim): New variable.
    
    Change-Id: I2656837686866961266b093cd6b4a4d528f5f684
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/vim.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index dee6d24ba4..9debed0b86 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -1531,6 +1531,28 @@ be integrated with @acronym{CI, Continuous Integration} 
pipelines to
 automate testing and is compatible with Vim and Neovim.")
       (license license:expat)))) ;; Specified in README.md.
 
+(define-public vim-jedi-vim
+  (package
+    (name "vim-jedi-vim")
+    (version "0.11.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/davidhalter/jedi-vim";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "03fj7f5cpchrdmz9szal6fdg05wdwb0j6260nnyp37nmpcpn13yc"))))
+    (build-system vim-build-system)
+    (arguments (list #:plugin-name "jedi-vim"))
+    (propagated-inputs (list python-jedi))
+    (home-page "https://github.com/davidhalter/jedi-vim";)
+    (synopsis "Jedi autocompletion library for Vim")
+    (description
+     "@code{jedi-vim} is a VIM binding to the autocompletion library Jedi.")
+    (license license:expat)))
+
 (define-public vim-srcery-vim
   (package
     (name "vim-srcery-vim")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]