0

I just build geany 1.23 under ubuntu 10.04. If I write:

import numpy as np

then if I write:

np.

After writing the dot, Ctrl+Shift+Space (nor Tab) doesn't trigger a calltip window as in ipython or with spyder. Is it the normal behaviour or is there something to do to fix that?

thank you

jeanpat

Regexident
  • 29,441
  • 10
  • 93
  • 100
Jean-Pat
  • 1,839
  • 4
  • 24
  • 41

1 Answers1

0

You need to add a global tags file as described in the manual because Geany only comes with tags for Python standard libraries by default. I just put up a NumPy tags file on the Wiki for you. Once you have this most of the symbols from the library should be available for auto-completion.

Matthew Brush
  • 164
  • 1
  • 1
  • 5