下载一个叫快捷命令的插件 把脚本粘贴进去就可以 设置未 关键字触发
const content = '{{subinput:请输入 文件名称 }}'
const type = "docx" // 保存文档的后缀
const fileName= content
const path = "D:\Users\Desktop" //手动改为桌面路径
const openAfterCreated = false // 创建成功后是否打开
/* script */
const fs = require("fs");
let filePath = ${path}\\${fileName}.${type}
fs.writeFile(filePath, "", err => {
if (err) {
utools.showNotification(err)
utools.showNotification(filePath)
} else {
if(openAfterCreated) {
open(filePath)
}
}
})