如何在 Dreamweaver 或记事本中创建宏/快捷方式++

发布于 2024-08-12 04:05:53 字数 346 浏览 3 评论 0原文

我从来没有用任何程序制作过“宏”或类似的东西。

我正在将我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

橘味果▽酱 2024-08-19 04:05:53

下载并安装 PSPad

然后将以下脚本保存到 \Script\VBScript 中的 VBS 文件中,然后重新打开 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_ 预设值。只需将关键字更改为 并按 Enter 键。重复。 (该脚本会记住最后使用的关键字,因此您不必再次输入所有关键字)。

Download and install PSPad.

Then save the following script into a VBS file in <PSPadFolder>\Script\VBScript and re-open 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

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).

拒绝两难 2024-08-19 04:05:53

您可以在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.

一身骄傲 2024-08-19 04:05:53

您可以使用替换所有打开的文档功能。

  1. 选择右侧所有包含该文本的文档,然后右键单击 -> open
  2. 对所有打开的文档进行搜索和替换。

如果您提供有关页面标题现在的外观的更多信息,将会更容易提供帮助。


编辑:如果您需要将整个网站更改为使用 gettext,最好手动执行

You can use the replace in all open documents function.

  1. Select all the documents on the right that have that text and right click -> open
  2. Do a search and replace on all open documents.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文