Open
Description
with neovim-0.3.0, stack and the following intero-neovim config
" Intero starts automatically. Set this if you'd like to prevent that.
let g:intero_start_immediately = 1
" Enable type information on hover (when holding cursor at point for ~1 second).
let g:intero_type_on_hover = 1
" Change the intero window size; default is 10.
let g:intero_window_size = 15
" Sets the intero window to split vertically; default is horizontal
let g:intero_vertical_split = 1
" OPTIONAL: Make the update time shorter, so the type info will trigger faster.
set updatetime=1000
map <silent> <F6> <Plug>InteroGenericType
Trying to get type information moves the cursor up, then starts doing weird stuff to the buffer, moving lines around and whatnot.
InteroGoToDef
seems to work occasionally, InteroOpen
too, InteroLoadCurrentFile
doesn't. The files are without error.
Plain ghc-mod works perfectly.