如何在 Dreamweaver 或记事本中创建宏/快捷方式++
我从来没有用任何程序制作过“宏”或类似的东西。
我正在将我的 php 代码移至使用“gettext”,因此我必须查找所有静态文本并进行更改。
例如,我需要将 page title
更改为 。
我不认为有一种方法可以一次性改变所有内容,因为它涉及查看它是否看起来像静态文本,但我确信在其中一个编辑器中可以选择一个文本,按一些键盘快捷键,它就会为我进行替换。
这可能吗?如何?
我手头有 Dreamweaver 和 Notepad++。我愿意使用其他工具。
谢谢!
I've never made "macros" or anything like that with any program.
I'm moving my php code to use "gettext", so I have to look for all my static text and change it up.
For example, I need to change page title
to <?php echo _('page title'); ?>
.
I don't think there is a way to change it all up in one shot, as it involves looking to see if it looks like static text, but I'm sure it's possible in one of those editors to maybe, select a text, press some keyboard shortcut, and it would do the replacement for me.
Is that possible? How?
I have both Dreamweaver and Notepad++ handy. I'm open to using some other tool.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下载并安装 PSPad。
然后将以下脚本保存到
\Script\VBScript
中的 VBS 文件中,然后重新打开 PSPad。然后打开您的文档。
突出显示文档中的某些文本,然后按
Ctrl + Q
热键(可在脚本本身中自定义)打开一个输入对话框,其中包含_SRC_
预设值。只需将关键字更改为并按 Enter 键。重复。 (该脚本会记住最后使用的关键字,因此您不必再次输入所有关键字)。
Download and install PSPad.
Then save the following script into a VBS file in
<PSPadFolder>\Script\VBScript
and re-open PSPad.Then open your document.
Highlight some text in the documentand press
Ctrl + Q
hotkey (customizable in the script itself) to open a input dialog with_SRC_
predefault in it. Just change the keyword to<?php echo _('_SRC_'); ?>
and press enter. Repeat. (The script remembers the last keyword used so you don't have to type it all again).您可以在dreamveaver中创建片段(在代码视图中右键单击),然后转到编辑->键盘快捷键并找到您的片段(当前:设置:dreamveaver标准,命令:片段,注释)并为其指定快捷方式。
You can create snipped in dreamveaver (right click in code view), next go to edit->keyboard shortcuts and find your snipped (current: set:dreamveaver standards, commands:snipped, comments) and assign shortcut to it.
您可以使用替换所有打开的文档功能。
如果您提供有关页面标题现在的外观的更多信息,将会更容易提供帮助。
编辑:如果您需要将整个网站更改为使用 gettext,最好手动执行
You can use the replace in all open documents function.
If you give more info on what the page titles look like now it would be easier to help.
Edit: If you need your entire site changed to use gettext, it would be best to do it manually