Skip to content

Commit

Permalink
Update supported file types
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoroth committed Oct 23, 2023
1 parent f809f16 commit 61c5160
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Intelligent Stimulus tooling for Visual Studio Code

## Functionality

This Language Server works for HTML and ERB files. It has the following language features:
Currently, this Language Server only works for HTML, though its utility extends to various file types such as ERB, PHP, or Blade files.

### Completions

Expand Down Expand Up @@ -37,10 +37,12 @@ This Language Server works for HTML and ERB files. It has the following language

```
.
├── client // Language Client
│ ├── src
│ │ └── extension.ts // Language Client entry point
├── package.json // The extension manifest.
|
├── client // Language Client
│ └── src
│ └── extension.ts // Language Client entry point
|
└── server // Language Server
└── src
└── server.ts // Language Server entry point
Expand Down
2 changes: 0 additions & 2 deletions client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ export class Client {
documentSelector: [
{ scheme: "file", language: "ruby" },
{ scheme: "file", language: "erb" },
{ scheme: "file", language: "haml" },
{ scheme: "file", language: "slim" },
{ scheme: "file", language: "blade" },
{ scheme: "file", language: "php" },
{ scheme: "file", language: "html" },
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
"activationEvents": [
"onLanguage:ruby",
"onLanguage:erb",
"onLanguage:haml",
"onLanguage:slim",
"onLanguage:blade",
"onLanguage:php",
"onLanguage:html"
Expand Down

0 comments on commit 61c5160

Please sign in to comment.