Fix activation when connected to Windows with Remote SSH (#748)

master
Brad Cornes 2023-03-28 11:42:42 +01:00 committed by GitHub
parent 6c2dbf7355
commit 5ccfd895c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -327,6 +327,7 @@
"color-name": "1.1.4",
"concurrently": "7.0.0",
"minimatch": "5.1.4",
"normalize-path": "3.0.0",
"rimraf": "3.0.2",
"vsce": "2.15.0",
"vscode-languageclient": "8.0.2"

View File

@ -44,6 +44,7 @@ import namedColors from 'color-name'
import minimatch from 'minimatch'
import { CONFIG_GLOB, CSS_GLOB } from 'tailwindcss-language-server/src/lib/constants'
import braces from 'braces'
import normalizePath from 'normalize-path'
const colorNames = Object.keys(namedColors)
@ -443,7 +444,7 @@ export async function activate(context: ExtensionContext) {
documentSelector: languages.get(folder.uri.toString()).map((language) => ({
scheme: 'file',
language,
pattern: `${folder.uri.fsPath.replace(/[\[\]\{\}]/g, '?')}/**/*`,
pattern: normalizePath(`${folder.uri.fsPath.replace(/[\[\]\{\}]/g, '?')}/**/*`),
})),
diagnosticCollectionName: CLIENT_ID,
workspaceFolder: folder,