Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #54784

Re: python IDE and function definition

From Ben Finney <ben+python@benfinney.id.au>
Subject Re: python IDE and function definition
Date 2013-09-26 17:02 +1000
References <524058FB.20005@mail.usask.ca>
Newsgroups comp.lang.python
Message-ID <mailman.338.1380178971.18130.python-list@python.org> (permalink)

Show all headers | View raw


Chris Friesen <cbf123@mail.usask.ca> writes:

> I'm running into issues where my current IDE (I'm playing with Komodo)
> can't seem to locate the definition, I suspect because it's too
> ambiguous.

The feature you're looking for – to start from the statement where a
function is called, then jump to the statement where that function is
defined – is implemented via “tags” across many languages and tools.

One very popular implementation is “Exuberant Ctags”. You can choose
from the tools <URL:http://ctags.sourceforge.net/tools.html> that
support that system, and continue using the same system when you switch
to a different language or a different tool.

> So rather than give up, I'd like to have my IDE suggest all possible
> answers.

Good luck to you in learning a development environment that is *not*
tied to the particular programming language you're writing.

-- 
 \          “… a Microsoft Certified System Engineer is to information |
  `\     technology as a McDonalds Certified Food Specialist is to the |
_o__)                               culinary arts.” —Michael Bacarella |
Ben Finney

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: python IDE and function definition Ben Finney <ben+python@benfinney.id.au> - 2013-09-26 17:02 +1000

csiph-web