mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
vim-plugins: add jedi-vim
As this is a python3 plugin it'd be nice to check for python3 support in the used vim, but apparently nobody else does this.
This commit is contained in:
parent
38db6fdfb9
commit
da0db21029
@ -718,6 +718,17 @@
|
||||
};
|
||||
};
|
||||
|
||||
jedi-vim = buildVimPluginFrom2Nix {
|
||||
name = "jedi-vim-2018-10-14";
|
||||
src = fetchFromGitHub {
|
||||
owner = "davidhalter";
|
||||
repo = "jedi-vim";
|
||||
rev = "b6dfc5fd49c26d4dbe9f54c814956567a7a9b3a8";
|
||||
sha256 = "11wvynjl1m23vdp4wvirhmm7vnpji5affbyhwz67yjkvh6c42xqa";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
};
|
||||
|
||||
Jenkinsfile-vim-syntax = buildVimPluginFrom2Nix {
|
||||
name = "Jenkinsfile-vim-syntax-2018-09-25";
|
||||
src = fetchFromGitHub {
|
||||
|
@ -334,4 +334,13 @@ with generated;
|
||||
};
|
||||
});
|
||||
|
||||
jedi-vim = jedi-vim.overrideAttrs(old: {
|
||||
# checking for python3 support in vim would be neat, too, but nobody else seems to care
|
||||
buildInputs = [ python3Packages.jedi ];
|
||||
meta = {
|
||||
description = "code-completion for python using python-jedi";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
});
|
||||
|
||||
}
|
||||
|
@ -37,14 +37,15 @@ ctjhoa/spacevim
|
||||
ctrlpvim/ctrlp.vim
|
||||
dag/vim2hs
|
||||
dannyob/quickfixstatus
|
||||
davidhalter/jedi-vim
|
||||
derekelkins/agda-vim
|
||||
derekwyatt/vim-scala
|
||||
dhruvasagar/vim-table-mode
|
||||
digitaltoad/vim-jade
|
||||
dleonard0/pony-vim-syntax
|
||||
dracula/vim
|
||||
dylanaraps/wal.vim
|
||||
drmingdrmer/xptemplate
|
||||
dylanaraps/wal.vim
|
||||
eagletmt/ghcmod-vim
|
||||
eagletmt/neco-ghc
|
||||
easymotion/vim-easymotion
|
||||
|
Loading…
Reference in New Issue
Block a user