|
|
@ -1,4 +1,27 @@ |
|
|
|
let g:deoplete#ignore_sources = get(g:, 'deoplete#ignore_sources', {}) |
|
|
|
let g:deoplete#ignore_sources.php = ['omni'] |
|
|
|
|
|
|
|
" {{{ phpactor |
|
|
|
" Include use statement |
|
|
|
nmap <Leader>u :call phpactor#UseAdd()<CR> |
|
|
|
" Invoke the context menu |
|
|
|
nmap <Leader>mm :call phpactor#ContextMenu()<CR> |
|
|
|
" Invoke the navigation menu |
|
|
|
nmap <Leader>nn :call phpactor#Navigate()<CR> |
|
|
|
" Goto definition of class or class member under the cursor |
|
|
|
nmap <Leader>o :call phpactor#GotoDefinition()<CR> |
|
|
|
" Show brief information about the symbol under the cursor |
|
|
|
nmap <Leader>K :call phpactor#Hover()<CR> |
|
|
|
" Transform the classes in the current file |
|
|
|
nmap <Leader>tt :call phpactor#Transform()<CR> |
|
|
|
" Generate a new class (replacing the current file) |
|
|
|
nmap <Leader>cc :call phpactor#ClassNew()<CR> |
|
|
|
" Extract expression (normal mode) |
|
|
|
nmap <silent><Leader>ee :call phpactor#ExtractExpression(v:false)<CR> |
|
|
|
" Extract expression from selection |
|
|
|
vmap <silent><Leader>ee :<C-U>call phpactor#ExtractExpression(v:true)<CR> |
|
|
|
" Extract method from selection |
|
|
|
vmap <silent><Leader>em :<C-U>call phpactor#ExtractMethod()<CR> |
|
|
|
"}}} |
|
|
|
|
|
|
|
nnoremap <leader>h :call PhpDocSingle()<CR> |