Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any tricks how one could make Sublime Text's Python autocompletion aware off all eggs from buildout's [eggs] section

E.g. grab the same sys.path as in Plone's generated bin/instance command and expose them to Sublime's auto-completion. You could easily auto-complete imports and stuff after this.

A preferable solution would be

  • Have special bin/sublime command generated by buildout

  • This command would open src/ folder as Sublime text (project?) with all necessary environment variables and stuff set

Other solutions / ideas welcome.

share|improve this question

3 Answers

up vote 5 down vote accepted

Check http://pypi.python.org/pypi/corneti.recipes.codeintel/0.1.3

This is even easier than Martin's solution, I use it together with omelette with a part like this in my development.cfg buildout

[codeintel]
recipe = corneti.recipes.codeintel
eggs = ${buildout:eggs}
extra-paths =
    ${omelette:location}
share|improve this answer
Do you need extra-paths if you already give it all the eggs? – Mikko Ohtamaa May 10 '12 at 21:57
Good question :) This worked for me, didn't dive deeper – Franklin Kingma May 11 '12 at 8:44
I want to generate .codeintel under src/ so that Sublime file browser sees only the relevant files... src/ which you are editing. Though if omelette is not in the project path CMD + P go anyware does not seem to work. Will investigate the matters. – Mikko Ohtamaa May 11 '12 at 12:07
The recipe has receive update 0.2.0 with some enhancements I did: github.com/fabiocorneti/corneti.recipes.codeintel – Mikko Ohtamaa May 25 '12 at 16:58

I, like Martin Aspelli, use the SublimeCodeIntel plugin; together with collective.recipe.omelette this fills all my code-completion needs. Martin blogged about his setup, including a little script that sets up the CodeIntel configuration file for you:

http://www.martinaspeli.net/articles/sublime-text-2-for-zope-and-plone

share|improve this answer
As a side note, I have a very good experience with ST2's SublimeRope plugin for Python autocompletion. – Mandx May 11 '12 at 18:32

For those interested in using SublimeRope instead, you can add something like this to your .ropeproject/config.py:

import os
import glob
for path in glob.glob(os.path.join(os.path.dirname(__file__), '../../buildout-cache/eggs/*.egg')):
    prefs.add('python_path', path)

Those buildout methods are quite fancy though!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.