Skip to content

Commit

Permalink
✨ Feature(custom): add preview support for more types of text file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuingsmile committed Dec 10, 2023
1 parent 6d7584e commit 2c46dca
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 24 deletions.
11 changes: 9 additions & 2 deletions src/renderer/manage/utils/textfile.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
export const textFileExt = [
'.applescript',
'.bat',
'.c',
'.cmd',
'.condarc',
'.conf',
'.config',
'.cpp',
'.css',
'.csv',
'.dart',
'.eslintignore',
'.gitattributes',
'.gitconfig',
'.gitignore',
Expand All @@ -22,20 +25,24 @@ export const textFileExt = [
'.java',
'.js',
'.json',
'.jsx',
'.lock',
'.log',
'.php',
'.prop',
'.properties',
'.ps1',
'.py',
'.rc',
'.sh',
'.ts',
'.tsv',
'.tsx',
'.txt',
'.vue',
'.xml',
'.yaml',
'.yml',
'.ts',
'.yarnrc',
'.condarc',
'license'
]
44 changes: 22 additions & 22 deletions supported_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,28 @@

### 文本

| 格式 | 描述 | 格式 | 描述 |
| :------------: | :-----------------: | :---------------: | :--------------: |
| .bat | 批处理文件 | .java | Java源代码文件 |
| .c | C语言源代码文件 | .js | JavaScript文件 |
| .cmd | Windows命令脚本文件 | .json | JSON文件 |
| .conf | 配置文件 | .log | 日志文件 |
| .config | 配置文件 | .php | PHP源代码文件 |
| .cpp | C++源代码文件 | .prop/.properties | 属性文件 |
| .css | 层叠样式表文件 | .py | Python源代码文件 |
| .csv | 逗号分隔值文件 | .rc | Windows资源文件 |
| .dart | Dart源代码文件 | .sh | Shell脚本文件 |
| .gitattributes | Git属性文件 | .tsv | 制表符分隔值文件 |
| .gitconfig | Git配置文件 | .txt | 纯文本文件 |
| .gitignore | Git忽略文件 | .xml | XML文件 |
| .gitkeep | Git保留文件 | .yaml/.yml | YAML文件 |
| .gitmodules | Git子模块文件 | .yarnrc | Yarn配置文件 |
| .go | Go源代码文件 | LICENSE | 许可证文件 |
| .h | 头文件 | .condarc | Conda配置文件 |
| .hpp | C++头文件 | .md | Markdown文件 |
| .htm/.html | HTML文件 | | |

| 格式 | 描述 | 格式 | 描述 |
| :------------: | :-----------------: | :---------------: | :----------------: |
| .bat | 批处理文件 | .java | Java源代码文件 |
| .c | C语言源代码文件 | .js | JavaScript文件 |
| .cmd | Windows命令脚本文件 | .json | JSON文件 |
| .conf | 配置文件 | .log | 日志文件 |
| .config | 配置文件 | .php | PHP源代码文件 |
| .cpp | C++源代码文件 | .prop/.properties | 属性文件 |
| .css | 层叠样式表文件 | .py | Python源代码文件 |
| .csv | 逗号分隔值文件 | .rc | Windows资源文件 |
| .dart | Dart源代码文件 | .sh | Shell脚本文件 |
| .gitattributes | Git属性文件 | .tsv | 制表符分隔值文件 |
| .gitconfig | Git配置文件 | .txt | 纯文本文件 |
| .gitignore | Git忽略文件 | .xml | XML文件 |
| .gitkeep | Git保留文件 | .yaml/.yml | YAML文件 |
| .gitmodules | Git子模块文件 | .yarnrc | Yarn配置文件 |
| .go | Go源代码文件 | LICENSE | 许可证文件 |
| .h | 头文件 | .condarc | Conda配置文件 |
| .hpp | C++头文件 | .md | Markdown文件 |
| .htm/.html | HTML文件 | .jsx/.tsx/.vue | JSX文件等 |
| .applescript | AppleScript脚本文件 | .eslintignore | ESLint忽略文件 |
| .lock | 锁文件 | .ps1 | PowerShell脚本文件 |

### 视频

Expand All @@ -50,4 +51,3 @@
| .mxf | MXF视频文件 | .asf | Advanced Systems Format视频文件 |
| .rm | RealMedia视频文件 | .rmvb | RealMedia可变比特率视频文件 |
| .wmv | Windows Media视频文件 | .mkv | Matroska视频文件 |

0 comments on commit 2c46dca

Please sign in to comment.