Re: Vim plugin that does Django code completion?

2017-07-13 Thread 'Tom Evans' via Django users
Hi Robert Ignore the helpful people telling you to stop using vim and use some god awful UI, the plugin you are looking for is called jedi.vim https://github.com/davidhalter/jedi-vim Debian has a package, vim-python-jedi, or you can install using Pathogen or Vundle. Cheers Tom On Fri, Jul 7,

Re: Vim plugin that does Django code completion?

2017-07-09 Thread Bernd Wechner
For what it's worth I use PyDev which is free. And am very happy with it. Though I donate money now and again because it is so good and free. On 9/07/2017 10:33 PM, Gabriel - Iulian Dumbrava wrote: I also suggest buying a PyCharm license. If you are working on a professional level and you have

Vim plugin that does Django code completion?

2017-07-09 Thread Gabriel - Iulian Dumbrava
I also suggest buying a PyCharm license. If you are working on a professional level and you have to do remote editing you'll most likely need to use line by line remote debugging. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Vim plugin that does Django code completion?

2017-07-07 Thread Robert F.
Thanks Mulianto and James. To James, perhaps I don't have a good workflow which is why the ability to edit files on a remote server is also a necessity. I grew tired of having to build a development environment on both my Mac laptop and my Debian server where my Django app runs so now I just

Re: Vim plugin that does Django code completion?

2017-07-07 Thread James Schneider
On Jul 7, 2017 8:27 AM, "Robert F." wrote: Is there a Vim plugin that does code completion for Django? I'd like to be able to type something like "foobar = models." and hit Tab and see a list of classes like CharField or Foreign key. Alternately, I'd be OK with entering an abbreviation that wou

Re: Vim plugin that does Django code completion?

2017-07-07 Thread Phang Mulianto
Hi You can use plugin on vim using snipmate. You can create your own autocomplete or using others created snip available for vim. Hope helps. On 7 Jul 2017 11:27 pm, "Robert F." wrote: > Is there a Vim plugin that does code completion for Django? I'd like to > be able to type something like

Vim plugin that does Django code completion?

2017-07-07 Thread Robert F.
Is there a Vim plugin that does code completion for Django? I'd like to be able to type something like "foobar = models." and hit Tab and see a list of classes like CharField or Foreign key. Alternately, I'd be OK with entering an abbreviation that would bring up the proper code snippet. The