dmmulroy / ts-error-translator.nvim

MIT License
241 stars 5 forks source link

perf: remove markdown parsing #23

Closed mehalter closed 8 months ago

mehalter commented 8 months ago

Rather than parsing markdown on every request we can skip this altogether and just use Lua. This decreases the space where bugs can occur and also increases the lookup performance since we don't need to check the filesystem if the file exists and parse it. Plus lua module caching makes this fast.

mehalter commented 8 months ago

Actually I'm going to revise this a bit to improve the loading more and I will reopen