vote up 1 vote down star
1

I'm using pythoncomplete omnicompletion in vim. It works great when I instantiate classes directly, eg

import numpy as np
x = np.ndarray(l)

then x attributes complete correctly.

But I work with numpy and matplotlib so usually use factory functions ie

x = np.zeros((2,2)) 
f = plt.figure()  
ax = f.add_subplot(111)

Is there any way I can hard code the return types of these common functions so I can complete on the returned object. (ie set up some mappings that matplotlib.pyplot.figure returns matplotlib.figure.Figure, np.zeros returns np.ndarray etc.?

flag
I asked a similar question here: stackoverflow.com/questions/1678953/… – Gary van der Merwe Nov 20 at 8:26

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.