Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmlnc committed May 8, 2021
1 parent 0ec7487 commit 6cb76f6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
5 changes: 0 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
"color-name": "1.1.4",
"fast-glob": "3.2.5",
"scss-symbols-parser": "2.0.1",
"slash": "4.0.0",
"vscode-css-languageservice": "5.1.1",
"vscode-languageclient": "7.0.0",
"vscode-languageserver": "7.0.0",
Expand Down
3 changes: 1 addition & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import * as path from 'path';

import slash from 'slash';
import * as vscode from 'vscode';
import type { URI } from 'vscode-uri';
import type { LanguageClientOptions, NodeModule, ServerOptions } from 'vscode-languageclient/node';
Expand Down Expand Up @@ -108,7 +107,7 @@ function buildClientOptions(workspace: URI): LanguageClientOptions {
* The workspace path is used to separate clients in multi-workspace environment.
* Otherwise, each client will participate in each workspace.
*/
const pattern = `${slash(workspace.fsPath)}/**`;
const pattern = `${workspace.fsPath}/**`;

return {
documentSelector: [
Expand Down

0 comments on commit 6cb76f6

Please sign in to comment.