Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Neovim support #21

Open
howarddo2208 opened this issue Apr 18, 2023 · 34 comments · May be fixed by #94
Open

Neovim support #21

howarddo2208 opened this issue Apr 18, 2023 · 34 comments · May be fixed by #94
Labels
new ide request Request for a new ide support

Comments

@howarddo2208
Copy link

Hi, This plugin is wonderful. Do you have any plans to support Neovim too?

@edwardsavin
Copy link

edwardsavin commented Apr 18, 2023

Yes please! This plugin on vim/ neovim would be a blessing.

People from the community already saw it and they seem to want it badly:
https://www.reddit.com/r/neovim/comments/12q7atv/pretty_errors_plugin_like_this/

@johnsoncodehk
Copy link
Contributor

You can use https://www.npmjs.com/package/pretty-ts-errors-lsp for now to build PoC for other IDEs.

@yaegassy
Copy link

@johnsoncodehk May I ask a question? Does pretty-ts-errors-lsp run on hover trigger?

@johnsoncodehk
Copy link
Contributor

In VSCode plugin it's run on onDidChangeDiagnostics, and then get on hover trigger.

FYI: https://github.com/johnsoncodehk/pretty-ts-errors/blob/dff54f1425721beb0aa534d5a17a0ef7ffecd412/src/extension.ts#L38

@yaegassy
Copy link

I tried it with coc.nvim. Although the appearance is a bit concerning, I confirmed that it works. (It might be a client-side issue)

sample-1

One thing that concerns me is that when I look at the trace log, it seems like the result is being output as standard output.

Trace Log
[Trace - 21:58:37.812] Sending response 'workspace/configuration - (6)'. Processing request took 1ms
Result: [
    null
]


[Trace - 21:58:37.820] Received response 'textDocument/inlayHint - (3)' in 33ms.
Result: []


<span style="color:#f96363;">⚠ Error</span><span style="color:#5f5f5f;">
(TS2322) 
<a title="See detailed explanation" href="https://typescript.tv/errors/#TS2322">
  <span class="codicon codicon-link-external">
  </span>
</a>  | 
<a title="See translation" href="https://ts-error-translator.vercel.app/?error=CoTwDgpgBA5AdgVwLYCMICcZQJYGcpwD2ALlAIa67YDmcZKANtMYVMeNDLsetnNTAB0QA">
  <span class="codicon codicon-globe">
  </span>
</a>
</span>
<span>

<span>
Type </span>
<span class="codicon codicon-none" style="background-color:var(--vscode-textCodeBlock-background);">

  ```type
   number 
is not assignable to type
 string 
[Trace - 21:58:37.828] Received notification 'textDocument/publishDiagnostics'. Params: { // ...snip } ```

@cherryramatisdev
Copy link

sample-1

Could you provide the configuration for using with coc.nvim ? I use the default neovim lsp and I want to port a version

@johnsoncodehk
Copy link
Contributor

It should be entirely just logic in the language client, I'm not sure why it would affect the LSP trace.

@yaegassy
Copy link

@cherryramatisdev I think johnsoncodehk's tweet would be helpful as a reference.

https://twitter.com/johnsoncodehk/status/1648228278149455872

@johnsoncodehk
Copy link
Contributor

@yaegassy Are you using @volar-plugins/pretty-ts-errors or building a client plugin based on pretty-ts-errors-lsp?

@yaegassy
Copy link

@johnsoncodehk I tried with @volar-plugins/pretty-ts-errors.

@johnsoncodehk
Copy link
Contributor

For @volar-plugins/pretty-ts-errors, in VSCode it also needs to set isTrusted and supportHtml in the language client middleware. I'm not sure if coc supports it. https://github.com/volarjs/volar.js/blob/5ae44d90936045b92ad9debcfb9ae952bb311fb8/packages/vscode/src/index.ts#L27-L28

@johnsoncodehk
Copy link
Contributor

@yaegassy please update @volar-plugins/pretty-ts-errors to 2.0.0-alpha.23-patch.2, it should fixed the logging issue.

@yaegassy
Copy link

@johnsoncodehk I checked that the issue with the log has been resolved!

Just one more thing, please allow me to confirm for the sake of being thorough. This is regarding the Markdown content of the hover response. Is there any additional processing required for "quotes" or anything else?

[Trace - 23:01:20.856] Received response 'textDocument/hover - (14)' in 4ms.
Result: {
    "contents": {
        "kind": "markdown",
        "value": "```typescript\n(property) name: string\n```\n\n---\n\n<span style=\"color:#f96363;\">⚠ Error</span><span style=\"color:#5f5f5f;\">\n(TS2322) \n<a title=\"See detailed explanation\" href=\"https://typescript.tv/errors/#TS2322\">\n  <span class=\"codicon codicon-link-external\">\n  </span>\n</a>  | \n<a title=\"See translation\" href=\"https://ts-error-translator.vercel.app/?error=CoTwDgpgBA5AdgVwLYCMICcZQJYGcpwD2ALlAIa67YDmcZKANtMYVMeNDLsetnNTAB0QA\">\n  <span class=\"codicon codicon-globe\">\n  </span>\n</a>\n</span>\n<span>\n\n<span>\nType </span>\n<span class=\"codicon codicon-none\" style=\"background-color:var(--vscode-textCodeBlock-background);\">\n\n  ```type\n   number \n  ```\n\n</span>\n<span> is not assignable to type </span>\n<span class=\"codicon codicon-none\" style=\"background-color:var(--vscode-textCodeBlock-background);\">\n\n  ```type\n   string \n  ```\n\n</span>\n<span>\n</span>"
    },
    "range": {
        "start": {
            "line": 4,
            "character": 15
        },
        "end": {
            "line": 4,
            "character": 19
        }
    }
}

@yoavbls yoavbls added the new ide request Request for a new ide support label Apr 18, 2023
@yaegassy
Copy link

I tried it on VSCode, but since the response was the same, I assume the issue is on the client side that I'm using. I resolved it myself. 🙇

@g1sbi
Copy link

g1sbi commented Apr 27, 2023

Bump. Would love this in NeoVim 🙏🏻

@yoavbls
Copy link
Owner

yoavbls commented Apr 29, 2023

I started the migration to a monorepo and now I'm exporting a formatting function that can be customizable. I would be happy to test it and try to make it work with Neovim.
Are you willing to help via Discord? @yaegassy @cherryramatisdev

@olrtg
Copy link

olrtg commented Jul 5, 2023

Don't know if you still need help with this @yoavbls but I'm available!

@thenbe
Copy link

thenbe commented Aug 13, 2023

Hi @yoavbls. Do you have any thoughts or advice on how a neovim plugin should be structured?

I briefly experimented trying to create one a few months back, but wasn't sure how to nicely render the final text produced by pretty-ts-errors. Do you think it's feasible to have pretty-ts-errors output in a markdown format? Then we can easily render it in neovim (or any other editor that supports markdown) with all that markdown has to offer (syntax highlighting, concealed hyperlinks, etc)

@piersolenski
Copy link

This issue inspired me to build https://github.com/piersolenski/wtf.nvim - which uses the power of AI to both better explain Typescript errors and give you custom tailored solutions. The best part is it actually works with any language with LSP support, and any level of diagnostic message. For those who don't want to use AI, it also allows you to open a search for diagnostic messages in your favourite resources such as Google, Stack Overflow, Github Issues etc - and I plan to support other sources soon!

@abdelrahman-essawy
Copy link

Bump!

@9mm
Copy link

9mm commented Sep 15, 2023

How do we go about adding this to volar with lsp-config?

        volar = {
          filetypes = { 'javascript', 'typescript', 'vue' }, -- enable takeover mode for js files - https://github.com/johnsoncodehk/volar/discussions/471
        },

@yoavbls
Copy link
Owner

yoavbls commented Sep 18, 2023

I'm still looking for some help here.
Is most of the TypeScript developers in Neovim is working with coc-volar of @yaegassy?
If so I'll just work on creating an official service and guide for volar.js

@mmirus
Copy link

mmirus commented Sep 19, 2023

I suspect that most TS devs using neovim are using the built-in LSP with typescript.nvim or typescript-tools.nvim, but I don't know for sure.

@nfwyst
Copy link

nfwyst commented Oct 1, 2023

I'm still looking for some help here. Is most of the TypeScript developers in Neovim is working with coc-volar of @yaegassy? If so I'll just work on creating an official service and guide for volar.js

maybe most of user just use tsserver with built-in lsp

@Otard95
Copy link

Otard95 commented Oct 2, 2023

Personally, I'm using COC atm. Want to refactor my setup but that's besides the point.

@nfwyst
Copy link

nfwyst commented Oct 3, 2023

Personally, I'm using COC atm. Want to refactor my setup but that's besides the point.

if you want, you can copy my config here: https://github.com/nfwyst/perfect-neovim-config/blob/main/lua/plugins/lsp/config.lua, im using lazy.nvim, its very fast!

@Otard95
Copy link

Otard95 commented Oct 3, 2023

if you want, you can copy my config

I like the structure. I'll probably take some inspiration from this! Thanks!

@OlegGulevskyy
Copy link

Hey,
I am actually attempting to achieve similar results in Neovim with my home-made-home-baked plugin here.
It's not on par features wise with this yet, and does not use the same LSP under the hood, because error message formatted into html is no of good use to us, neovim plebs, but it attempts to manually parse some stuff.
So, feel free to give it a go, if you want.
https://github.com/OlegGulevskyy/better-ts-errors.nvim

@aindriu80
Copy link

+1, I hope this comes to something like LazyVim, I didn't get anything from above working yet

@adex-codez
Copy link

I have been using this is vs code before moving to neovim and I dearly miss it would love this to come to neovim and I will be glad to help

@hexh250786313
Copy link

hexh250786313 commented Jan 29, 2024

@yaegassy Hi! I tried pretty-ts-errors-lsp in coc-tsserver and got the HTML response. I think the key factor to let it work with coc.nvim is how to make the formatted HTML code show correctly in the diagnostics panel. I have tried some HTML-to-MD packages like turndown, but they are not ideal.

Could you please give me some suggestions?

Edit1. I just found out that coc.nvim's markdown parsing supports displaying HTML content. Maybe just some simple tweaks are needed to correctly show the diagnostics in coc-tsserver.

image

image

Edit2. Now I get the same look as yours:

image

Edit3: Now I make a simple demo based pretty-ts-errors-lsp. I translate the html codes to markdown and ANSI code and it works like charm.

image

@hexh250786313
Copy link

https://github.com/hexh250786313/pretty-ts-errors-markdown

I created a package based on pretty-ts-errors that converts the HTML output of pretty-ts-errors into markdown. Additionally, I added CLI functionality that can accept standard input from the command line. I hope this package will simplify the process of integrating pretty-ts-errors support for neovim or other IDEs capable of rendering markdown format.

Moreover, for coc.nvim users, I have created an extension based on the aforementioned pretty-ts-errors-markdown. As I mentioned, it relies on markdown rendering, which, while not as perfect as HTML rendering, is sufficient.

https://github.com/hexh250786313/coc-pretty-ts-errors

image

@rchl
Copy link

rchl commented Feb 9, 2024

I created a package based on pretty-ts-errors that converts the HTML output of pretty-ts-errors into markdown.

Have you on purpose disabled issues in your project? I would like to make a suggestion there (to expose helper function to convert just the message).

@hexh250786313
Copy link

@rchl My mistake, you can now raise an issue. Thank you for your feedback.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new ide request Request for a new ide support
Projects
None yet
Development

Successfully merging a pull request may close this issue.