查看功能列表时的Calltips / Docstring?

时间:2011-03-26 01:22:51

标签: python komodo komodoedit

我刚刚转到Komodo进行Python编程,到目前为止我很喜欢它。我喜欢如果我输入一个函数名,然后是open-paren (,它会打开calltip / docstring。我也很喜欢如果输入模块名称,然后是.,它会打开一个可用功能列表。我的问题是,当我有功能列表时,是否可以弹出calltip / docstring?换句话说,我希望能够在插入之前看到每个函数的作用(文档字符串)并使用(打开参数列表。原因是我发现自己需要一个函数,并在函数列表中滚动并插入看起来相关的函数来调出文档字符串以查看它是否是我想要的那个,然后如果不是,则删除它并再次尝试(通过恢复功能列表)。这个功能存在于Eclipse中,我试图模仿它。

很抱歉,如果这是令人费解的,并提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

使用插入所选功能的宏,添加括号,并自动触发呼叫提示。两个弹出窗口都无法同时显示,因此将宏指定给键盘快捷键,并在该快捷方式和撤消快捷方式之间切换以添加/删除括号并显示/隐藏功能列表:

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

var editor = ko.views.manager.currentView.scimoz;
var cursor_character = editor.getCharAt(editor.currentPos - 1); //get cursor position
editor.autoCComplete(); //autocomplete selected function in list
editor.copyText(1,"("); //add left parentheses to buffer

if(cursor_character > 96 && cursor_character < 123)
  {
  editor.paste(); //add left parentheses to editor after a function name 
  }
ko.commands.doCommand("cmd_triggerPrecedingCompletion"); //trigger calltip or function list

<强>参考