"=============================================================================
" FILE: grep_git.vim
" AUTHOR: Alisue <lambdalisue at hashnote.net>
" 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.
" }}}
"=============================================================================
function! unite#sources#grep_git#define() abort "{{{
return s:source
endfunction "}}}
function! unite#sources#grep_git#is_available() abort "{{{
if !executable('git')
return 0
endif
call unite#util#system('git rev-parse')
return (unite#util#get_last_status() == 0) ? 1 : 0
endfunction "}}}
function! unite#sources#grep_git#repository_root() abort "{{{
if !executable('git')
return ''
endif
let stdout = unite#util#system('git rev-parse --show-toplevel')
return (unite#util#get_last_status() == 0)
\ ? substitute(stdout, '\v\r?\n$', '', '')
\ : ''
endfunction "}}}
" Inherit from 'grep' source
let s:origin = unite#sources#grep#define()
let s:source = deepcopy(s:origin)
let s:source['name'] = 'grep/git'
let s:source['description'] = 'candidates from git grep'
function! s:source.gather_candidates(args, context) abort "{{{
"
" Note:
" Most of code in this function was copied from unite.vim
"
if !executable('git')
call unite#print_source_message(
\ 'command "git" is not executable.', s:source.name)
let a:context.is_async = 0
return []
elseif !unite#sources#grep_git#is_available()
call unite#print_source_message(
\ 'the current working directory is not in a git repository.', s:source.name)
let a:context.is_async = 0
return []
endif
if !unite#util#has_vimproc()
call unite#print_source_message(
\ 'vimproc plugin is not installed.', self.name)
let a:context.is_async = 0
return []
endif
if empty(a:context.source__targets)
\ || a:context.source__input == ''
call unite#print_source_message('Canceled.', s:source.name)
let a:context.is_async = 0
return []
endif
" replace ^/ into the repository root
let root = unite#sources#grep_git#repository_root()
call map(a:context.source__targets, 'substitute(v:val, "^/", root . "/", "")')
if a:context.is_redraw
let a:context.is_async = 1
endif
let cmdline = printf('git grep -n --no-color %s %s -- %s',
\ a:context.source__extra_opts,
\ string(a:context.source__input),
\ unite#helper#join_targets(a:context.source__targets),
\)
call unite#print_source_message('Command-line: ' . cmdline, s:source.name)
" Note:
" --no-color is specified thus $TERM='dumb' is not required (actually git
" will blame if the $TERM value is not properly configured thus it should
" not be 'dumb').
"
" Note:
" 'git grep' does not work properly with PTY
"
let a:context.source__proc = vimproc#plineopen3(
\ vimproc#util#iconv(cmdline, &encoding, 'char'), 0)
return self.async_gather_candidates(a:args, a:context)
endfunction "}}}
" vim: foldmethod=marker