1

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

我想要的是光标自动插入到和之间$|这样我就可以输入我的变量名,而无需手动导航。

有什么帮助吗?

非常感谢。

4

1 回答 1

1

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);
于 2012-01-25T18:23:10.870 回答