Johnson Chu
Johnson Chu
For your information, you can also find typescript path with node process. https://github.com/sublimelsp/LSP-volar/issues/19#issuecomment-914388298 https://github.com/sublimelsp/LSP-volar/blob/master/server/resolve_module.js
Sorry to bother, I was hoping for some guidance, this question should be generic. Typescript's language service API with language service host is synchronous, so it is not possible to...
@jrieken If I understand correctly, I need to migrate from TS language service API to tsserver after tsserver supports virtual file system, or I have to implement virtual file system...
@jrieken It's okay, I think I know how to do it now. :) But my concern is whether synchronizing workspace files to virtual file system of language server will cause...
The correct type checking of `` + `` is more complicated than expected, but I have implemented it in the Volar project. If you want, I can try to extract...
Publish in 0.29, see: - https://github.com/johnsoncodehk/volar/blob/master/packages/vue-code-gen/src/index.ts - https://www.npmjs.com/package/@volar/vue-code-gen
Thanks for this project, very helpful for refactoring! Here are two suggestions: - Add a toggle to switch whether to combine same function names. - For asynchronous call (e.g. setTimeout(()...
I think this is not an error. I did call it multiple times, but I aimed to check the dependency of the function, so it would be helpful to provide...
Try this: ```csharp TileAnimationData tileAnimationData; TileBase tile = tilemap.GetTile(/* ... */); if (tile != null) { tile.GetTileAnimationData(/* ... */, ref tileAnimationData); } ```
Yes, you are right! I don't think we can get it from Tilemap APIs. You can Override the GetTileAnimationData to caching the TileAnimationData, not good but work. ```csharp public class...