FrigoEU / psc-ide-vim

Vim plugin for psc-ide
96 stars 36 forks source link

Only getting generic results - no signatures #137

Closed dakom closed 6 years ago

dakom commented 6 years ago

See for example:

image

I tried various combinations of plugins... right now it's using Deoplete and syntastic

dakom commented 6 years ago

Looking at your dotfiles fixed it ;)

let g:deoplete#complete_method = "omnifunc"
let g:deoplete#omni_patterns = {}
let g:deoplete#omni_patterns.purescript = ['\w*']
let g:deoplete#omni#input_patterns = {}
let g:deoplete#omni#input_patterns.purescript = '[.\w]+'