Re: Vim as Python IDE

2013-04-06 Thread David Halter
2013/3/6 tucky.k...@gmail.com On Friday, January 18, 2013 10:09:19 PM UTC+1, David Halter wrote: The IDE features are better than those of python-mode, but python-mode offers other additional features. They work side by side. Just disable the rope features of python-mode. How do

Re: Vim as Python IDE

2013-01-18 Thread David Halter
I would like to know what´s the best way to turn Vim into a Python IDE on Windows 7 If you're interested in autocompletion / goto and this kind of IDE stuff, jedi-vim might be for you: https://github.com/davidhalter/jedi-vim The IDE features are better than those of python-mode, but

Re: VIM Python interface fails with segfault on Windows

2012-12-25 Thread David Halter
2012/12/20 David Fishburn dfishburn@gmail.com Can you supply your output from :ver. Sure! Here's `:ver` of gVim: VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Aug 16 2010 10:31:31) MS-Windows 64-bit GUI version with OLE support Compiled by geo...@reilly.org Huge version with GUI. Features

VIM Python interface fails with segfault on Windows

2012-12-20 Thread David Halter
In some Windows (not all) installations the following VIM (vim.exe **and** gvim) command fails with a segfault: :python print type(sys.stdout) It is discussed here: https://github.com/davidhalter/jedi-vim/issues/27#issuecomment-11572332 Is there anyone who knows why this is happening? I think

A new approach to Python autocompletion

2012-10-14 Thread David Halter
Hi there! I developed an autocompletion for Python: https://github.com/davidhalter/jedi There's a VIM plugin for Jedi: https://github.com/davidhalter/jedi-vim Basically it is a (very) enhanced version of pythoncomplete, which is the default omnicomplete function for vim/python. If anyone has

A new approach to Python autocompletion

2012-10-14 Thread David Halter
Hi there! I developed an autocompletion for Python, called Jedi: https://github.com/davidhalter/jedi There's a VIM plugin for Jedi: https://github.com/davidhalter/jedi-vim Basically it is a (very) enhanced version of pythoncomplete, which is the default omnicomplete function for vim/python. If

A new approach to Python autocompletion

2012-10-14 Thread David Halter
Hi there! I developed an autocompletion for Python: https://github.com/davidhalter/jedi There's a VIM plugin for Jedi: https://github.com/davidhalter/jedi-vim Basically it is a (very) enhanced version of pythoncomplete, which is the default omnicomplete function for vim/python. If anyone has