blob: dbe55b7f76fe788741a0ca36f7c8491317064bb7 (
plain)
1
2
3
4
5
6
7
8
|
let g:unite_redraw_hold_candidates = 50000
call unite#filters#matcher_default#use(['matcher_fuzzy'])
autocmd FileType unite call s:unite_my_settings()
function! s:unite_my_settings()
nmap <buffer> <C-p> <Plug>(unite_toggle_auto_preview)
imap <buffer> <C-j> <Plug>(unite_select_next_line)
imap <buffer> <C-k> <Plug>(unite_select_previous_line)
endfunction
|