Thread: [Pydev-code] auto completion
Brought to you by:
fabioz
From: jjlorenzo <jjl...@uc...> - 2008-03-05 01:37:17
|
Hello. I am a developer of Nova, a Linux distribution based on Gentoo. When I install eclipse+pydev I have auto completion on gtk, i.e gtk.Label() is show in the auto complete list even without put gtk in force builin libs. But with ubuntu, it not work. Any idea why with ubuntu gtk is not auto complete? (sorry for my english, I spoke spanish) Thanks, JJ |
From: JeanMichel F. <to...@gm...> - 2008-03-05 08:45:04
|
Hi, On ubuntu most of python lib are symlinked, just check with an $ ls -lh /usr/lib/python and Pydev doesn 't support symlink source folder. > Hello. > I am a developer of Nova, a Linux distribution based on Gentoo. When I > install eclipse+pydev I have auto completion on gtk, i.e gtk.Label() is > show in the auto complete list even without put gtk in force builin > libs. But with ubuntu, it not work. > > Any idea why with ubuntu gtk is not auto complete? > > (sorry for my english, I spoke spanish) > > Thanks, JJ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > pydev-code mailing list > pyd...@li... > https://lists.sourceforge.net/lists/listinfo/pydev-code |
From: Fabio Z. <fa...@gm...> - 2008-03-05 10:32:26
|
Yes, that's right... pydev only supports symlinks in the interpreter configuration (in the source folder, symlinks don't work...) Cheers, Fabio On Wed, Mar 5, 2008 at 5:45 AM, JeanMichel FRANCOIS <to...@gm...> wrote: > Hi, > On ubuntu most of python lib are symlinked, just check with an $ > ls -lh /usr/lib/python and Pydev doesn 't support symlink source folder. > > > > > Hello. > > I am a developer of Nova, a Linux distribution based on Gentoo. When I > > install eclipse+pydev I have auto completion on gtk, i.e gtk.Label() is > > show in the auto complete list even without put gtk in force builin > > libs. But with ubuntu, it not work. > > > > Any idea why with ubuntu gtk is not auto complete? > > > > (sorry for my english, I spoke spanish) > > > > Thanks, JJ > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > pydev-code mailing list > > pyd...@li... > > https://lists.sourceforge.net/lists/listinfo/pydev-code > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > pydev-code mailing list > pyd...@li... > https://lists.sourceforge.net/lists/listinfo/pydev-code > |
From: chris v. <chr...@gm...> - 2008-03-05 10:47:40
|
Hello, I have Ubuntu 7.10 (Gutsy) and autocomplete on gtk works for me - just make sure that when adding a new interpreter, you check the two entries starting with "/var/lib/python-support" (they are not checked by default). regards, chris Fabio Zadrozny schrieb: > Yes, that's right... pydev only supports symlinks in the interpreter > configuration (in the source folder, symlinks don't work...) > > Cheers, > > Fabio > > On Wed, Mar 5, 2008 at 5:45 AM, JeanMichel FRANCOIS <to...@gm...> wrote: >> Hi, >> On ubuntu most of python lib are symlinked, just check with an $ >> ls -lh /usr/lib/python and Pydev doesn 't support symlink source folder. >> >> >> >> > Hello. >> > I am a developer of Nova, a Linux distribution based on Gentoo. When I >> > install eclipse+pydev I have auto completion on gtk, i.e gtk.Label() is >> > show in the auto complete list even without put gtk in force builin >> > libs. But with ubuntu, it not work. >> > >> > Any idea why with ubuntu gtk is not auto complete? >> > >> > (sorry for my english, I spoke spanish) >> > >> > Thanks, JJ >> > >> > ------------------------------------------------------------------------- >> > This SF.net email is sponsored by: Microsoft >> > Defy all challenges. Microsoft(R) Visual Studio 2008. >> > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> > _______________________________________________ >> > pydev-code mailing list >> > pyd...@li... >> > https://lists.sourceforge.net/lists/listinfo/pydev-code >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> pydev-code mailing list >> pyd...@li... >> https://lists.sourceforge.net/lists/listinfo/pydev-code >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > pydev-code mailing list > pyd...@li... > https://lists.sourceforge.net/lists/listinfo/pydev-code > |
From: jjlorenzo <jjl...@uc...> - 2008-03-05 16:19:30
|
Chris, yo tambien tengo 7.10 y no me funciona tu solución, la solución es adicionar a /usr/lib/python-support al seleccionar el interprete, al no estar en el PYTHONPATH no es reconocida por defecto, sino /var/lib/python-support que como bien explicaron tiene symlinks y pydev no los soporta en las carpetas de fuentes. saludos cordiales, Jose. PD: spanish :-) On Wed, 2008-03-05 at 11:47 +0100, chris vigelius wrote: > Hello, > > I have Ubuntu 7.10 (Gutsy) and autocomplete on gtk works for me - just > make sure that when adding a new interpreter, you check the two > entries > starting with "/var/lib/python-support" (they are not checked by > default). > > regards, > chris > |