Rafał Chłodnicki

Results 1204 comments of Rafał Chłodnicki

Are you able to verify whether it behaves the same in VSCode?

We have `SnippetTextEdit` type now.

How would I enable the flag in that case, given that the code looks like this? https://github.com/nuxt-community/sentry-module/blob/977a74e7b28f360116514258adcf8cbcec2b5be1/src/options.ts#L243-L245 Note that this code is triggered by Nuxt when it loads the Sentry...

By "stub" do you mean the mode used during development only? Because that's not the case here. Please have a look at `dist/module.cjs` at https://www.npmjs.com/package/@nuxtjs/sentry?activeTab=code . This is the file...

I've tried quickly and that seems to work too. Though I'm really tempted to just forcing Nuxt to load the module using MJS since that's so much cleaner...

If I'd want to do everything by the book then how would I initialize `jiti` in an ESM context? `jiti` documentation says to use `__filename`: ```js const jiti = require("jiti")(__filename);...

To be fair it can run independently from LSP-typescript when changing the `hybridMode` setting to `false`. Though that's less memory efficient and maybe with some other downsides.

Regardless of Volar, I'm thinking that it makes sense to request data from multiple servers for requests that return a list of things (definition, references etc). We are already doing...

> Initially I thought the the request is to introduce a mechanism to orchestrate certain requests to certain language servers. I've intended to describe the problem in this issue rather...

For cases where there are two servers running that handle similar functionality (pyright and pylsp for example) it could be a problem indeed. It's solvable by disabling relevant capabilities or...