Shougo / unite.vim

:dragon: Unite and create user interfaces
http://www.vim.org/scripts/script.php?script_id=3396
Other
2.85k stars 223 forks source link

grep fails with "Error occurred in gather_candidates" #845

Closed khughitt closed 9 years ago

khughitt commented 9 years ago

Searching with grep fails.

No errors thrown.

VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Feb  4 2015 08:02:36)
Included patches: 1-617
Compiled by Arch Linux
Huge version with GTK2 GUI.  Features included (+) or not (-):
+acl             +farsi           +mouse_netterm   +syntax
+arabic          +file_in_path    +mouse_sgr       +tag_binary
+autocmd         +find_in_path    -mouse_sysmouse  +tag_old_static
+balloon_eval    +float           +mouse_urxvt     -tag_any_white
+browse          +folding         +mouse_xterm     -tcl
++builtin_terms  -footer          +multi_byte      +terminfo
+byte_offset     +fork()          +multi_lang      +termresponse
+cindent         +gettext         -mzscheme        +textobjects
+clientserver    -hangul_input    +netbeans_intg   +title
+clipboard       +iconv           +path_extra      +toolbar
+cmdline_compl   +insert_expand   +perl            +user_commands
+cmdline_hist    +jumplist        +persistent_undo +vertsplit
+cmdline_info    +keymap          +postscript      +virtualedit
+comments        +langmap         +printer         +visual
+conceal         +libcall         +profile         +visualextra
+cryptv          +linebreak       +python          +viminfo
+cscope          +lispindent      -python3         +vreplace
+cursorbind      +listcmds        +quickfix        +wildignore
+cursorshape     +localmap        +reltime         +wildmenu
+dialog_con_gui  +lua             +rightleft       +windows
+diff            +menu            +ruby            +writebackup
+digraphs        +mksession       +scrollbind      +X11
+dnd             +modify_fname    +signs           -xfontset
-ebcdic          +mouse           +smartindent     +xim
+emacs_tags      +mouseshape      -sniff           +xsmp_interact
+eval            +mouse_dec       +startuptime     +xterm_clipboard
+ex_extra        +mouse_gpm       +statusline      -xterm_save
+extra_search    -mouse_jsbterm   -sun_workshop    -xpm
set nocompatible
set runtimepath+=~/.vim/bundle/vimproc
set runtimepath+=~/.vim/bundle/unite.vim
nnoremap <space>/ :Unite grep:.<cr>

call unite#filters#matcher_default#use(['matcher_fuzzy'])
call unite#custom#source('file_rec/async','sorters','sorter_rank', )
let g:unite_enable_start_insert=1
let g:unite_split_r
![2015-02-07-225923_958x407_scrot](https://cloud.githubusercontent.com/assets/125001/6095198/5d053cae-af1d-11e4-978b-f4c28a16d2f9.png)
ule = 'botright'
nmap <space> [unite]
nnoremap [unite] <nop>
nnoremap <space>/ :Unite grep:.<cr>
itchyny commented 9 years ago

Please re-compile vimproc: (cd ~/.vim/bundle/vimproc && make)

khughitt commented 9 years ago

That fixed it. Thanks for the quick suggestion!