Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ce396ea

Browse filesBrowse files
authored
Merge pull request #8 from arduino/support-pde
Document selector for .pde files.
2 parents 2e70114 + 2e27319 commit ce396ea
Copy full SHA for ce396ea

File tree

Expand file treeCollapse file tree

2 files changed

+3
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+3
-2
lines changed

‎package.json

Copy file name to clipboardExpand all lines: package.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
".c",
8686
".cpp",
8787
".h",
88-
".hpp"
88+
".hpp",
89+
".pde"
8990
],
9091
"configuration": "./languages/ino.language-configuration.json"
9192
}

‎src/extension.ts

Copy file name to clipboardExpand all lines: src/extension.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async function buildLanguageClient(config: LanguageServerConfig): Promise<Langua
191191
},
192192
{
193193
initializationOptions: {},
194-
documentSelector: ['ino', 'c', 'cpp', 'h', 'hpp'],
194+
documentSelector: ['ino', 'c', 'cpp', 'h', 'hpp', 'pde'],
195195
uriConverters: {
196196
code2Protocol: (uri: vscode.Uri): string => (uri.scheme ? uri : uri.with({ scheme: 'file' })).toString(),
197197
protocol2Code: (uri: string) => vscode.Uri.parse(uri)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.