mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
767d4d1fae
commit
513bf16459
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue