So to try it out I made a quick python file, where I made a small class and imported a couple of packages.
But whatever I try autocompleting (for example,
- Code: Select all
import time
- Code: Select all
time.
the status line (at the bottom) says "No completion available".
The syntax highlighter is set to python, and so is the build environment.
I've tried autocompleting various things in old python scripts I had lying around, it doesn't work anywhere.
I made a small class like
- Code: Select all
class Test(object):
def __init__(self):
self.var = 0
def test(self):
pass
thinking I should be able to autcomplete when doing
- Code: Select all
foo = Test()
foo.
but still "No completion available".
What am I missing?
I'm running the latest beta of sublimetext (20100217), and can't find a single reference to anyone else having troubles with autocomplete online.
(I should perhaps also mention that I installed all the sublime text community packages, maybe something is interfering?)
Could I have accidentally deleted some important file perhaps?