Files
uTools-quickcommand/src/js/options/specialVars.js
2022-04-07 00:37:56 +08:00

65 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const specialVars = {
isWin: {
name: "isWin",
label: "{{isWin}}",
desc: "是否Window系统, 返回1或0"
},
LocalId: {
name: "LocalId",
label: "{{LocalId}}",
desc: "本机唯一ID"
},
BrowserUrl: {
name: "BrowserUrl",
label: "{{BrowserUrl}}",
desc: "浏览器当前链接"
},
ClipText: {
name: "ClipText",
label: "{{ClipText}}",
desc: "剪贴板内容"
},
subinput: {
name: "subinput",
label: "{{subinput}}",
desc: "子输入框的文本"
},
input: {
name: "input",
label: "{{input}}",
desc: "主输入框的文本"
},
pwd: {
name: "pwd",
label: "{{pwd}}",
desc: "文件管理器当前目录"
},
WindowInfo: {
name: "WindowInfo",
label: "{{WindowInfo}}",
desc: "当前窗口信息JSON格式"
},
SelectFile: {
name: "SelectFile",
label: "{{SelectFile}}",
desc: "文件管理器选中的文件不支持Linux"
},
MatchedFiles: {
name: "MatchedFiles",
label: "{{MatchedFiles}}",
desc: "匹配的文件JSON格式"
},
type: {
name: "type",
label: "{{type}}",
desc: "专业模式的type"
},
payload: {
name: "payload",
label: "{{payload}}",
desc: "专业模式的payload,JSON格式"
}
}
export default specialVars