下载并安装PSPad。
然后将以下脚本保存到 VBS 文件中<PSPadFolder>\Script\VBScript
并重新打开 PSPad。
'Enclose It! by Lukman
const module_name = "Enclose It!"
const module_ver = "0.1"
const enclose_token = "_SRC_"
const enclose_hotkey = "CTRL+Q"
enclose_last = enclose_token
sub Init
addMenuItem "Enclose It!","", "EncloseIt", enclose_hotkey
end sub
sub EncloseIt
encloser = InputBox("Enclose content", module_name, enclose_last)
If encloser = False Then Exit Sub
Set editor = newEditor()
editor.assignActiveEditor
editor.selText Replace(encloser, enclose_token, editor.selText)
enclose_last = encloser
end sub
然后打开您的文档。
突出显示文档中的一些文本并按Ctrl + Q
热键(可在脚本本身中自定义)以打开一个带有预默认值的输入对话框_SRC_
。只需将关键字更改为<?php echo _('_SRC_'); ?>
并按回车键。重复。(脚本会记住最后使用的关键字,因此您不必再次输入所有关键字)。