We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc597ee commit 82938d7Copy full SHA for 82938d7
src/fileSelector.ts
@@ -2,7 +2,7 @@ import * as vscode from 'vscode';
2
3
// 配置常量
4
const ALLOWED_FILENAMES = ['package.json']; // 文件名白名单
5
-const INCLUDED_EXTENSIONS = ['cpp', 'h', 'c', 'cxx', 'hpp', 'py', 'lua', 'ls', 'lh', 'ts', 'js']; // 扩展名白名单
+const INCLUDED_EXTENSIONS = ['cpp', 'h', 'c', 'cxx', 'hpp', 'py', 'lua', 'ls', 'lh', 'ts', 'js', "md"]; // 扩展名白名单
6
const EXCLUDED_DIRECTORIES = ['node_modules', '.git', 'build', 'dist', 'out', 'vendor']; // 排除目录
7
8
/**
0 commit comments