Version: 0.1.0 Support: Vim 7.3 and above (Let me know if there are issues)
NOTE
grep/git
source is now moved into the unite from this commit.
unite-grep-vcs is an unite source package plugin for 'git grep' or 'hg grep'. There is a similar plugin called sgur/unite-git_grep. and the difference are:
- unite-git_grep: grep command is called when user hit key in unite interface (like incremental search)
- unite-grep-vcs: grep command is called once when user open the unite interface. This behavior is similar to 'Unite grep'.
The structure of the repository follow a standard vim plugin's directory structure thus you can use Vundle.vim or neobundle.vim to install vim-gista like:
" Vundle.vim
Plugin 'lambdalisue/unite-grep-vcs'
" neobundle.vim
NeoBundle 'lambdalisue/unite-grep-vcs'
" neobundle.vim (Lazy)
NeoBundleLazy 'lambdalisue/unite-grep-vcs', {
\ 'autoload': {
\ 'unite_sources': ['grep/git', 'grep/hg'],
\}}
unite-grep-vcs provide the following two sources
grep/git
callgit grep
command internally.grep/hg
callhg grep
command internally.
AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
Tomohiro Nishimura <tomohiro68 at gmail.com>
License: MIT license
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The MIT License (MIT)
Copyright (c) 2014 Alisue, hashnote.net
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.