将光标插入 Komodo Edit 宏的中间

发布于 2024-11-19 18:38:26 字数 205 浏览 4 评论 0原文

我在 Komodo Edit 中为 Smarty 设置了一个宏,当我按下指定的键绑定(信息为 Ctrl+Alt+P)时,它会添加一个 {$|@dumpr}

我希望光标自动插入到 $| 之间,这样我就可以输入变量名称,而无需手动导航。

有什么帮助吗?

非常感谢。

I have set up a macro for Smarty in Komodo Edit which adds a {$|@dumpr} when I press my specified key binding (which, for info is Ctrl+Alt+P).

What I would like is the cursor to be automatically inserted between the $ and the | so I can type my variable name without having to manually navigate my way in there.

Any help?

Many thanks.

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

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

发布评论

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

评论(1

深白境迁sunset 2024-11-26 18:38:26

使用 currentPos 和 gotoPos 方法:

komodo.assertMacroVersion(2);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); } // bug 67103

var currentPos = komodo.editor.currentPos;
komodo.editor.insertText(currentPos, '{$|@dumpr}');
komodo.editor.gotoPos(currentPos+2);

Use the currentPos and gotoPos methods:

komodo.assertMacroVersion(2);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); } // bug 67103

var currentPos = komodo.editor.currentPos;
komodo.editor.insertText(currentPos, '{$|@dumpr}');
komodo.editor.gotoPos(currentPos+2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文