Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7407061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:39:06+00:00 2026-05-29T05:39:06+00:00

I just recently switched to Komodo for Python programming, and I’m loving it so

  • 0

I just recently switched to Komodo for Python programming, and I’m loving it so far. I love how if I type a function name, followed by the open-paren (, it opens the calltip/docstring. I also love how if I type a module name, followed by ., it opens a list of available functions. My question is, is it possible to get the calltip/docstring to popup when I have the function list up? In other words, I want to be able to see what each function does (the docstring) before I insert it and open the argument list with the (. The reason is that I find myself needing a function, and scrolling through the function list and inserting functions that look relevant to bring up the docstring to see if that’s the exact one I want, and then if it’s not, deleting it and trying again (by bringing back up the function list). This functionality is present in Eclipse, and I’m trying to mimic it.

Sorry if that was convoluted, and thanks in advance for any help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:39:06+00:00Added an answer on May 29, 2026 at 5:39 am

    Use a macro which inserts the selected function, adds the parentheses, and triggers the calltip automatically. Both popups cannot be shown simultaneously, so assign the macro to a keyboard shortcut, and alternate between that shortcut and the undo shortcut to add/remove parentheses and show/hide the function list:

    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
    

    References

    • Scintilla Documentation: AutoCComplete
    • Komodo Command ID List
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've just recently switched over to using 64-bit Python 2.6.1 on Mac OS X
Just recently I dove into the VideoLAN open source project. This was my first
I just recently got my first mac. I do lots of programming on windows
We just recently switched from Visual Studio 2008 to Visual Studio 2010. I have
We've just recently switched to VS 2010 and i had a solution that was
We've just recently switched over from SVN to Mercurial, but now we are running
I just recently switched out our repository and context from Linq-to-SQL to Entity Framework
Recently, I switched my development environment from Windows to Linux. So far, I have
[I'm sorry that this isn't directly a programming question. But I have recently switched
I just recently switched to using the NullSoft Installer for my .NET application. By

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.