Bug 446670 - LSP popups contain HTML escape entities
Summary: LSP popups contain HTML escape entities
Status: RESOLVED FIXED
Alias: None
Product: kate
Classification: Applications
Component: general (show other bugs)
Version: Git
Platform: Other All
: NOR normal
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-12-08 06:55 UTC by Gleb Popov
Modified: 2022-01-11 12:21 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 21.12.1
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gleb Popov 2021-12-08 06:55:38 UTC
I'm using Kate with the LSP plugin and Haskell Language Server, a LSP implementation for the Haskell programming language. It works quite well, except the following nasty bug:

Haskell type annotations usually contain an "->" to denote function types. However, when I hover over any function and get a popup window, I see "Int -> String" instead of "Int -> String".


STEPS TO REPRODUCE
1. Install HLS https://github.com/haskell/haskell-language-server/
2. Create an empty Haskell project with `cabal init`.
3. Put the following code into "Main.hs":

sum x y = x + y

4. Hover over "sum" string and look into popup.

OBSERVED RESULT

sum :: Int -> Int -> Int

EXPECTED RESULT

sum :: Int -> Int -> Int

ADDITIONAL INFORMATION

I'm not quite sure if this bug should be reported to HLS upstream or here. But given that other editors work fine with HLS, I decided to try here first.
Comment 1 Waqar Ahmed 2022-01-09 20:21:09 UTC
Fixed with 21.12.1
Comment 2 Gleb Popov 2022-01-11 12:21:46 UTC
I confirm, it works now. Thanks a lot for fixing this!