Is there any way to get python omnicomplete to work with non-system modules in vim? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T21:08:49Z http://stackoverflow.com/feeds/question/199180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi 3 Is there any way to get python omnicomplete to work with non-system modules in vim? andrew 2008-10-13T22:08:26Z 2009-07-09T15:19:58Z <p>The only thing I can get python omnicomplete to work with are system modules. I get nothing for help with modules in my site-packages or modules that I'm currently working on.</p> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/199636#199636 2 Answer by technomalogical for Is there any way to get python omnicomplete to work with non-system modules in vim? technomalogical 2008-10-14T00:55:19Z 2008-10-14T00:55:19Z <p>Just ran across this on Python reddit tonight: <a href="http://orestis.gr/blog/2008/10/13/pysmell-v06-released/" rel="nofollow">PySmell</a>. Looks like what you're looking for.</p> <blockquote> <p>PySmell is a python IDE completion helper.</p> <p>It tries to statically analyze Python source code, without executing it, and generates information about a project’s structure that IDE tools can use. </p> </blockquote> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/200227#200227 0 Answer by Pev for Is there any way to get python omnicomplete to work with non-system modules in vim? Pev 2008-10-14T07:12:40Z 2008-10-14T07:12:40Z <p>I think your after the <a href="http://www.vim.org/scripts/script.php?script_id=850" rel="nofollow">pydiction</a> script. It lets you add your own stuff and site-packages to omni complete. </p> <p>While your at it, add the following to your python.vim file...</p> <pre><code> set iskeyword+=. </code></pre> <p>This will let you auto-complete package functions e.g. if you enter...</p> <pre><code> os.path. </code></pre> <p>and then [CTRL][N], you'll get a list of the functions for os.path.</p> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/201420#201420 2 Answer by Jeremy Michael Cantrell for Is there any way to get python omnicomplete to work with non-system modules in vim? Jeremy Michael Cantrell 2008-10-14T14:35:18Z 2008-10-17T12:23:23Z <p>I get completion for my own modules in my PYTHONPATH or site-packages. I'm not sure what version of the pythoncomplete.vim script you're using, but you may want to make sure it's the latest.</p> <p>EDIT: Here's some examples of what I'm seeing on my system...</p> <p>This file (mymodule.py), I puth in a directory in PYTHONPATH, and then in site-packages. Both times I was able to get the screenshot below.</p> <pre><code>myvar = 'test' def myfunction(foo='test'): pass class MyClass(object): pass </code></pre> <p><img src="http://i437.photobucket.com/albums/qq96/jmcantrell/screenshot.png" alt="screenshot" /></p> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/213253#213253 2 Answer by andrew for Is there any way to get python omnicomplete to work with non-system modules in vim? andrew 2008-10-17T18:19:55Z 2008-10-17T20:17:25Z <p>Once I generated ctags for one of my site-packages, it started working for that package -- so I'm guessing that the omnicomplete function depends on ctags for non-sys modules.</p> <p>EDIT: Not true at all.</p> <p>Here's the problem -- poor testing on my part -- omnicomplete WAS working for parts of my project, just not most of it.</p> <p>The issue was that I'm working on a django project, and in order to import django.db, you need to have an environment variable set. Since I couldn't import django.db, any class that inherited from django.db, or any module that imported a class that inherited from django.db wouldn't complete.</p> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/851255#851255 1 Answer by gotgenes for Is there any way to get python omnicomplete to work with non-system modules in vim? gotgenes 2009-05-12T05:26:38Z 2009-05-12T05:26:38Z <p>While it's important to note that you must properly set your <code>PYTHONPATH</code> environmental variable, per the the previous answer, there is a notable <a href="http://groups.google.com/group/vim%5Fdev/browse%5Fthread/thread/58191d176ebd9722/d9cd31cee304b7df" rel="nofollow">bug in Vim which prevents omnicompletion from working when an import fails</a>. As of Vim 7.2.79, this bug hasn't been fixed.</p> http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/1104576#1104576 1 Answer by RobM for Is there any way to get python omnicomplete to work with non-system modules in vim? RobM 2009-07-09T15:19:58Z 2009-07-09T15:19:58Z <p>Trouble-shooting tip: verify that the module you are trying to omni-complete can be imported by VIM. I had some syntactically correct Python that VIM didn't like:</p> <pre><code>:python import {module-name} Traceback (most recent call last): File "&lt;string&gt;", line 1, in ? File "modulename/__init__.py", line 9 class empty_paranthesis(): ^ SyntaxError: invalid syntax </code></pre> <p>Case-in-point, removing the parenthesis from my class definition allowed VIM to import the module, and subsequently OmniComplete on that module started to work.</p>