-
-
Notifications
You must be signed in to change notification settings - Fork 406
Closed
@mdrslmr
Description
Hi,
I experienced, that some comments containing >>>
are not evaluated in certain lines of my file. I tried to reproduce the behavior with this peace of code:
-- >>> 2 + 2
-- 4
myfunc :: [Int] -> String
-- >>> 2 + 2
-- 4
myfunc [] = ""
-- >>> 2 + 2
-- 4
myfunc [i] = show i
-- >>> 2 + 2
-- No "Refresh" or "Evaluate", no respone!
myfunc (i:is) = show i ++ ", " ++ myfunc is
-- >>> 2 + 2
-- No "Refresh" or "Evaluate", no respone!
I'm using archlinux, vim, coc, and haskell-language-server-wrapper.
I have first asked this question in coc.nvim, but it may be an issue with the hls?
neoclide/coc.nvim#5410