mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
initial setup for grep
This commit is contained in:
parent
a1b28a0d0b
commit
f2f8dc608d
@ -76,6 +76,25 @@ sunmap m
|
|||||||
nnoremap <silent> ' :call ListSelect("marks", "'")<CR> " list jumps/marks
|
nnoremap <silent> ' :call ListSelect("marks", "'")<CR> " list jumps/marks
|
||||||
map <leader>md :delmarks A-Z0-9 <cr> " clear marks
|
map <leader>md :delmarks A-Z0-9 <cr> " clear marks
|
||||||
|
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
" grep
|
||||||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
set grepprg=grep\ -snH\ $* " use system grep
|
||||||
|
command! -nargs=+ -complete=file_in_path -bar Grep cgetexpr Grep(<f-args>)
|
||||||
|
command! -nargs=+ -complete=file_in_path -bar LGrep lgetexpr Grep(<f-args>)
|
||||||
|
|
||||||
|
" open quickfix
|
||||||
|
augroup quickfix
|
||||||
|
autocmd!
|
||||||
|
autocmd QuickFixCmdPost cgetexpr cwindow
|
||||||
|
autocmd QuickFixCmdPost lgetexpr lwindow
|
||||||
|
augroup END
|
||||||
|
|
||||||
|
" grep into quickfix/location list
|
||||||
|
map <leader>fq :Grep **/*<left><left><left><left><left>
|
||||||
|
map <leader>fl :LGrep **/*<left><left><left><left><left>
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" misc keys
|
" misc keys
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
@ -133,3 +152,10 @@ function! ListSelect(command, jump)
|
|||||||
endtry
|
endtry
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
" better grep wrapper
|
||||||
|
" https://gist.github.com/romainl/56f0c28ef953ffc157f36cc495947ab3
|
||||||
|
"
|
||||||
|
function! Grep(...)
|
||||||
|
return system(join([&grepprg] + [expandcmd(join(a:000, ' '))], ' '))
|
||||||
|
endfunction
|
||||||
|
Loading…
x
Reference in New Issue
Block a user