We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1423010 commit 5f3ffeeCopy full SHA for 5f3ffee
src/main/kotlin/com/emberjs/glint/GlintLspSupportProvider.kt
@@ -218,7 +218,7 @@ class GlintLspServerDescriptor(private val myProject: Project) : LspServerDescri
218
}
219
220
override fun findLocalFileByPath(path: String): VirtualFile? {
221
- if (this.isWsl) {
+ if (this.isWsl && !path.startsWith(this.wslDistro.replace("\\", "/"))) {
222
val uri = this.wslDistro.replace("\\", "/") + path
223
return super.findLocalFileByPath(uri)
224
0 commit comments