I'm using plain vim occasionally, but never tried to do any coding in it, just because I'm not sure how to configure it for that. Which plugins for Python coding are universally agreed on as "must haves" Preferably just one, or two at most.
I've been doing python development in vim for the past 8 years with no plugins. Works perfectly fine.
Vim 8.2
51–60 of 80 posts
Re: Vim 8.2
#52https://www.vim.org/vim-8.2-released.php
Re: Vim 8.2
#53I'm using plain vim occasionally, but never tried to do any coding in it, just because I'm not sure how to configure it for that. Which plugins for Python coding are universally agreed on as "must haves" Preferably just one, or two at most.
Re: Vim 8.2
#54With vscode recent remote capabilities its hard to push(come up with a argument) vim/emacs for programmers who do dev in remote VMs.
Re: Vim 8.2
#55AFAICT, the sanest version of "real" vim that seems turnkey is the version of vim that runs in git bash in the cygwin shell that installs with git extension for windows. Other than that, the VS and VSCode vi emulators do most of what I want and then I'm not tempted to to go down the dark hole of vim extensions.
Re: Vim 8.2
#56Say what you want about Neovim, but it sure motivated Bram to make Vim better again. Almost everything listed here looks like a direct reaction to features Neovim has added. Same for older releases (async, terminal, etc.). Competition is good and I'm glad we're having it.
Just out of curiosity (and this goes into the subject of open source project dynamics of which I am really just a lay observer, and as someone who hasn't followed the history of either projects closely) - how is vim vs neovim organized as open source projects? Do both have a healthy ecosystem of contributor/maintaners? Are either in danger of running into "single person syndrome" or "hit-by-a-bus" syndrome?
Re: Vim 8.2
#57Earlier quoted context omitted.
There are a lot of ways to skin this particular cat. I've found vim-lsp is probably the best starting point, as you can plug any server you want into it, and have a consistent interface. https://github.com/prabirshrestha/vim-lsp/wiki/Servers-Pytho...
What does it mean "plug in a server into it"? I looked at the page you linked to, and I have no idea what any of that means, or what to do with it. I just want some basic stuff: autocomplete + indentation will probably achieve 90% of what I want from a Python IDE.
Re: Vim 8.2
#58Earlier quoted context omitted.
Autocomplete, autoindentation, and perhaps colors would be nice though! To me, the main advantage of vim over IDE is it's there on any remote server.
auto indent and syntax highlighting are there by default. Never used autocomplete so can't say.
Re: Vim 8.2
#59At this point, vim is hindering progress. While they finally compied almost all of additional features of neovim, there is no sense of innovation and progress there and unfortunately the diff with neovim is right now minimal so neovim loses contributors that would otherwise be
Re: Vim 8.2
#60With vscode recent remote capabilities its hard to push(come up with a argument) vim/emacs for programmers who do dev in remote VMs.