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>
This commit is contained in:
Nguyễn Gia Phong 2023-11-19 22:19:19 +09:00 committed by Efraim Flashner
parent 767d4d1fae
commit 513bf16459
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1531,6 +1531,28 @@ (define-public vim-vader
automate testing and is compatible with Vim and Neovim.") automate testing and is compatible with Vim and Neovim.")
(license license:expat)))) ;; Specified in README.md. (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 (define-public vim-srcery-vim
(package (package
(name "vim-srcery-vim") (name "vim-srcery-vim")