pspad script.vbs
来自「是一个很好的编辑器」· VBS 代码 · 共 17 行
VBS
17 行
' it will create new editor window, copy all text from first window into new
' and save new file as C:\SAMPLE.TXT
const module_name = "xxxx" 'this name must be unique !!!
const module_desc = "some name" 'script description
const module_ver = "1.0" 'version
sub Main 'main procedure
end sub
' name "Init" is required, its called automatically during initialization to create menu items
' addMenuItem "Name of menu item", "Name of submenu if required", "Main"
sub Init
addMenuItem "Name of menu item", "", "Main"
end sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?