选择文件开始编辑
从左侧文件浏览器中选择一个文件
从左侧文件浏览器中选择一个文件
将创建在:{{ currentDirectory || '根目录' }}
将创建在:{{ currentDirectory || '根目录' }}
📷 图片:JPG, PNG, GIF, WebP, BMP, ICO
📄 文档:MD, TXT
⚙️ 配置:JSON, YAML, TOML
最大文件大小:2MB
原始文件名:{{ selectedFileForUpload.name }}
文件大小:{{ formatFileSize(selectedFileForUpload.size) }}
原路径:{{ moveSourcePath }}
示例:https://github.com/username/repo.git
请输入有效的 Git 仓库地址(HTTPS 或 SSH 格式)
启用后只显示 .md, .txt, .toml, .yaml, .yml, .json 等配置文件
在白名单模式下允许显示的额外目录/文件
示例:src/ 显示 src 目录 | config.json 显示该文件
示例:.css 排除 CSS 文件 | test.txt 排除特定文件 | dist/ 排除目录
.css
CSS
.js
JS
.html
HTML
.log
日志
dist/
dist
node_modules/
node_modules
.git/
.git
build/
build
支持正则表达式,保存后自动刷新生效
.*\.css$
CSS
.*\.html$
HTML
.*\.js$
JS
^\.
隐藏文件
.*\.log$
日志
^dist/
dist
.css 排除后缀 |
file.txt 排除文件 |
dist/ 排除目录
.* 任意字符 |
\. 点号 |
$ 结尾 |
^ 开头