3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #49589 from schmittlauch/jedi-vim-18.09

vimPlugins: add jedi-vim plugin
This commit is contained in:
Andreas Rammhold 2018-11-04 13:19:38 +01:00 committed by GitHub
commit faa179da40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -3414,6 +3414,19 @@ self = rec {
};
jedi-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "jedi-vim-2018-10-14";
src = fetchgit {
url = "https://github.com/davidhalter/jedi-vim";
rev = "b6dfc5fd49c26d4dbe9f54c814956567a7a9b3a8";
sha256 = "11wvynjl1m23vdp4wvirhmm7vnpji5affbyhwz67yjkvh6c42xqa";
};
dependencies = [];
# it'd be nice to check for python3 support in vim, but nobody else seems to care
buildInputs = [python3Packages.jedi];
};
} // lib.optionalAttrs (config.allowAliases or true) (with self; {
# aliasess

View file

@ -30,6 +30,7 @@
"github:ctrlpvim/ctrlp.vim"
"github:dag/vim2hs"
"github:dannyob/quickfixstatus"
"github:davidhalter/jedi-vim"
"github:derekelkins/agda-vim"
"github:derekwyatt/vim-scala"
"github:dhruvasagar/vim-table-mode"