创建新的用户工具以使用 EditPlus 粘贴文本

发布于 2024-11-08 01:45:42 字数 177 浏览 0 评论 0原文

我使用 EditPlus 3.30 作为代码编辑器,但这个问题也适用于早期版本。我想在用户工具栏上创建一个新的用户工具项。默认设置允许您在单击图标时打开模板。我想创建一个项目,而不是粘贴来自库文件(*.ctl)或任何其他文本文件的代码。最后,新的用户工具项的功能就像 hml 工具栏上的图标之一一样。

我没有丰富的编程经验。

I use EditPlus 3.30 as my code editor, but this question also applies to earlier versions. I would like to create a new user tool item on the user tool bar. The default set-up allows you to open a template when you click on an icon. I would like to create an item that instead pastes code from a libray file (*.ctl) or any other text file. In the end, the new user tool item would function just like one of the icons on the hml tool bar.

I don't have extensive programming experience.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白云不回头 2024-11-15 01:45:42

EditPlus 文本编辑器:如何创建工具栏用户工具图标来粘贴自定义代码片段。

像这样配置“首选项/工具”对话框:

Command        CScript.exe C:\Your Path\Pastetext.js
Argument         //NoLogo $(CurRow)
leave initial directory blank
Action         Run as text (Insert)

将以下五行保存为 Pastetext.js

 var cArgs =                  WScript.Arguments;
var rStr =                  cArgs(0);
var rStr ="<item id='file1' media-type='application/xhtml+xml' href='aSample.html'/>";
// Print filler string
WScript.StdOut.Write(rStr);

//rStr 变量将打印光标在打开的文档中的位置。

EditPlus text editor: How to create a toolbar user tool icon to paste custom code snippets.

Configure the Preference/Tools dialog like this:

Command        CScript.exe C:\Your Path\Pastetext.js
Argument         //NoLogo $(CurRow)
leave initial directory blank
Action         Run as text (Insert)

Save the flowing five lines as Pastetext.js

 var cArgs =                  WScript.Arguments;
var rStr =                  cArgs(0);
var rStr ="<item id='file1' media-type='application/xhtml+xml' href='aSample.html'/>";
// Print filler string
WScript.StdOut.Write(rStr);

//The rStr variable will print where your cursor is in an open document.

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