Merge pull request #8911 from rehno-lindeque/vimPlugins-vim-multiple-cursors

vimPlugins: add vim-multiple-cursors
This commit is contained in:
Arseniy Seroka 2015-07-21 14:26:45 +03:00
commit 4bffdc51e7
2 changed files with 13 additions and 0 deletions

View File

@ -59,6 +59,7 @@ rec {
hoogle = Hoogle;
ipython = vim-ipython;
latex-live-preview = vim-latex-live-preview;
multiple-cursors = vim-multiple-cursors;
necoGhc = neco-ghc; # backwards compat, added 2014-10-18
neocomplete = neocomplete-vim;
neosnippet = neosnippet-vim;
@ -451,6 +452,17 @@ rec {
};
vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-multiple-cursors-2015-05-29";
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
rev = "3199d34f57e1e20d2dd807b31a5a72d7f7d42e96";
sha256 = "26b43c921b416cc19482d03435516d42a209ab104bac9979b073d0db61e95186";
};
dependencies = [];
};
vim-nerdtree-tabs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-nerdtree-tabs-2014-09-25";
src = fetchgit {

View File

@ -96,6 +96,7 @@
"vim-gitgutter"
"vim-iced-coffee-script"
"vim-latex-live-preview"
"vim-multiple-cursors"
"vim-signature"
"vim-snippets"
"vim2hs"