Mac 上使用 Komodo 的 Python 宏

发布于 2024-11-10 13:13:00 字数 310 浏览 0 评论 0原文

我正在使用 Komodo IDE,版本 6.1.1,内部版本 61234,平台 macosx-x86。我还使用 Python 3.2 和 Python 2.7。我刚刚开始使用(我的第一台)Mac。操作系统版本10.6。?

在我的 Windows 机器上,我设置了几个宏,我想继续使用它们:

F2:保存文件,然后使用 Python 2.x 运行,结果在选项卡中,在当前目录中启动
F3:保存文件,然后使用 Python 3.x 运行,结果在选项卡中,从当前目录开始

知道如何执行此操作吗?我刚开始使用 Mac,所以不知道从哪里开始。

I'm using Komodo IDE, version 6.1.1, build 61234, platform macosx-x86. I'm also using Python 3.2 and Python 2.7. I've just moved to using (my first) Mac. OS version 10.6.?

On my Windows machines I had a couple of macros set up that I would like to continue to use:

F2: save file and then run using Python 2.x, results in tab, start in current directory
F3: save file and then run using Python 3.x, results in tab, start in current directory

Any idea how to do this? I'm very new to using a Mac so I don't know where to start.

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

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

发布评论

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

评论(2

神仙妹妹 2024-11-17 13:13:00

我最终编写了自己的宏 - 见下文......

// Macro recorded on: Thu Jun 10 2010 08:50:50 GMT+1000 (AUS Eastern Standard Time)
komodo.assertMacroVersion(3);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); }
komodo.doCommand('cmd_save')
ko.run.runEncodedCommand(window, '/usr/local/bin/pythonw \"%F\" {\'cwd\': u\'%D\'}');

并且......

// Macro recorded on: Thu Jun 10 2010 08:50:50 GMT+1000 (AUS Eastern Standard Time)
komodo.assertMacroVersion(3);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); }
komodo.doCommand('cmd_save')
ko.run.runEncodedCommand(window, '/usr/local/bin/pythonw3 \"%F\" {\'cwd\': u\'%D\'}');

I ended up writing my own macros - see below...

// Macro recorded on: Thu Jun 10 2010 08:50:50 GMT+1000 (AUS Eastern Standard Time)
komodo.assertMacroVersion(3);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); }
komodo.doCommand('cmd_save')
ko.run.runEncodedCommand(window, '/usr/local/bin/pythonw \"%F\" {\'cwd\': u\'%D\'}');

and...

// Macro recorded on: Thu Jun 10 2010 08:50:50 GMT+1000 (AUS Eastern Standard Time)
komodo.assertMacroVersion(3);
if (komodo.view && komodo.view.scintilla) { komodo.view.scintilla.focus(); }
komodo.doCommand('cmd_save')
ko.run.runEncodedCommand(window, '/usr/local/bin/pythonw3 \"%F\" {\'cwd\': u\'%D\'}');
眼眸里的那抹悲凉 2024-11-17 13:13:00

转到“工具箱”,右键单击要保存的宏,然后单击“另存为”。将保存的宏复制到您的 Mac。然后单击扳手图标并单击“从文件系统导入文件”

在此处输入图像描述

如果您有 Komodo 7,则您可以使用同步功能将您的宏同步到多个计算机,无需太多努力。

Go to your 'Toolbox', right click the macro you want to save and then click 'Save as'. Copy the saved macros to your Mac. And then click the wrench icon and click 'Import files from file system'

enter image description here

If you have Komodo 7, then you can use the Synchronization feature to sync your macros to multiple computers without much effort.

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