Is there any way to get python omnicomplete to work with non-system modules in vim? - Stack Overflow most recent 30 from stackoverflow.com2010-03-15T20:46:47Zhttp://stackoverflow.com/feeds/question/199180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi4Is there any way to get python omnicomplete to work with non-system modules in vim?andrewhttp://stackoverflow.com/users/230312008-10-13T22:08:26Z2009-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#1996362Answer by technomalogical for Is there any way to get python omnicomplete to work with non-system modules in vim?technomalogicalhttp://stackoverflow.com/users/61732008-10-14T00:55:19Z2008-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#2002270Answer by Pev for Is there any way to get python omnicomplete to work with non-system modules in vim?Pevhttp://stackoverflow.com/users/60632008-10-14T07:12:40Z2008-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#2014202Answer by Jeremy Michael Cantrell for Is there any way to get python omnicomplete to work with non-system modules in vim?Jeremy Michael Cantrellhttp://stackoverflow.com/users/188662008-10-14T14:35:18Z2008-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#2132532Answer by andrew for Is there any way to get python omnicomplete to work with non-system modules in vim?andrewhttp://stackoverflow.com/users/230312008-10-17T18:19:55Z2008-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#8512552Answer by gotgenes for Is there any way to get python omnicomplete to work with non-system modules in vim?gotgeneshttp://stackoverflow.com/users/381402009-05-12T05:26:38Z2009-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#11045761Answer by RobM for Is there any way to get python omnicomplete to work with non-system modules in vim?RobMhttp://stackoverflow.com/users/831002009-07-09T15:19:58Z2009-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 "<string>", 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>