开发者

Configure vbs "hello world" script for EditPlus user tool

开发者 https://www.devze.com 2023-03-06 03:15 出处:网络
How do I configu开发者_开发百科re an EditPlus user tool (Preferences dialog box) to execute a vbs script that simply pastes a \"Hello World\" string to an open file?I use editPlus version 3.30/EditPlu

How do I configu开发者_开发百科re an EditPlus user tool (Preferences dialog box) to execute a vbs script that simply pastes a "Hello World" string to an open file? I use editPlus version 3.30/


EditPlus text editor: How to create a script that will paste a string. The script can serve as a user toolbar item to paste custom code snippets.

Configure the Preference/Tools dialog like this:

Command:

Cscript.exe "$(AppDir)\filters\Pastetext.js"

Argument: //NoLogo $(CurRow)

leave initial directory blank

Action:

Run as text (Insert)

Save Option: Select "Current file"

Save the following line as Pastetext.js in the appropriate directory

`WScript.echo("Hello World");`

The string will print where your cursor is in an open document.

0

精彩评论

暂无评论...
验证码 换一张
取 消