Skip to content

Commit d9afede

Browse files
committed
ATL-1136: Add .adoc and .md file support
1 parent c75b954 commit d9afede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino-ide-extension/src/common/protocol/sketches-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export namespace Sketch {
8787
export namespace Extensions {
8888
export const MAIN = ['.ino', '.pde'];
8989
export const SOURCE = ['.c', '.cpp', '.s'];
90-
export const ADDITIONAL = ['.h', '.c', '.hpp', '.hh', '.cpp', '.s', '.json'];
90+
export const ADDITIONAL = ['.h', '.c', '.hpp', '.hh', '.cpp', '.S', '.json', '.md', '.adoc'];
9191
export const ALL = Array.from(new Set([...MAIN, ...SOURCE, ...ADDITIONAL]));
9292
}
9393
export function isInSketch(uri: string | URI, sketch: Sketch): boolean {

0 commit comments

Comments
 (0)