Removed vim-ruby-conque, causes shell connection leaks and other issues

This commit is contained in:
Yan Pritzker
2013-12-15 15:02:54 -06:00
parent 1cdd7ff9ec
commit f2f9c92332
6 changed files with 21 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
"git grep the current word using K (mnemonic Kurrent)
nnoremap <silent> K :call CloseSingleConque()<CR>:GitGrep <cword><CR>
nnoremap <silent> K :GitGrep <cword><CR>
function! GetVisual()
let reg_save = getreg('"')
@@ -14,7 +14,7 @@ function! GetVisual()
endfunction
"git grep visual selection
vnoremap K :call CloseSingleConque()<CR>:<C-U>execute GitGrep(GetVisual())<CR>
vnoremap K :<C-U>execute GitGrep(GetVisual())<CR>
"git grep current word up to the next exclamation point using ,K
nnoremap ,K viwf!:<C-U>execute GitGrep(GetVisual())<CR>