YouCompleteMe
Python-mode
YouCompleteMe | Python-mode | |
---|---|---|
70 | 10 | |
25,479 | 5,449 | |
0.1% | 0.0% | |
8.0 | 3.2 | |
9 days ago | 7 months ago | |
Python | Vim Script | |
GNU General Public License v3.0 only | GNU Lesser General Public License v3.0 only |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
YouCompleteMe
-
How to configure vim like an IDE
For vim specifically, I've been using coc.nvim, which works pretty well for my needs, and I know its quite popular. Another fairly popular one is YouCompleteMe, which I had taken a look at for some other languages; but ended up just using coc as I can't justify using YCM once a year (if that) -- too much "headache" for not a lot of use, you know?
-
What’s an free bare bones IDE for Python that works smoothly out of the box?
YouCompleteMe. A pretty good autocompletion plugin, though vim does have its own, somewhat useful built-in auto completion that requires more keystrokes
-
Vim Golang syntax is ugly
There are plugins to do semantic highlighting. I don't use any of them because I'm satisfied with Vim's native syntax highlighting and with tree-sitter (and also because I don't use LSPs), but searching for "Vim semantic highlighting" on DuckDuckGo yields this: https://github.com/ycm-core/YouCompleteMe. The highlighting used in its demo is too baroque for my taste, but looking at your VSCode screenshot, it looks like it would be right up your alley.
-
Will installing Vim get rid of my current work on macOS?
The plugin that is requiring Python3 is You Complete Me here is the link!! The Vundle link I was looking at is also in the body of my post.
- [Neovim] Comment ajouter la complétion de code C / C ++ dans neovim?
-
Vim or Emacs for C++ Coding?
I use vim for C++ coding, however it is a bit difficult to set up to make it productive. I use YouCompleteMe [0] for autocompletion, Vimspector [1] with the C++ plugin for debugging, ALE [2] for linting, along with a few other general plugins (such as NerdTREE for file view).
[0] https://github.com/ycm-core/YouCompleteMe
[1] https://github.com/puremourning/vimspector
[2] https://github.com/dense-analysis/ale
-
Soliciting opinions: Favorite autocomplete?
I didn't make a complete list of requirements :) This issue makes YCM uninteresting to me, so I've not dug too deep into it.
-
Vim plugin like vscode "go to definition" function
my favorite is YouCompleteMe.
-
⚔️ 7 Secret Weapons for Lightning-Fast Code Writing with VS Code
🔎 Learn more
- Opiniones en el nuevo Bing de Microsoft?
Python-mode
-
NVIM: More complete autocomplete
As for the Vim auto complete plug-in to use. The biggest (and rather quite bloated provider) are coc and youcompleteme. Vim had countless other completion provider plugins over the years, I lost track of which ones are still good to use and which ones should already be superseded by better techs, but one I personally use python-mode, which uses rope and vim-lsp which supports pylsp.
-
Vim - How to Maintain Shell Output?
python-mode plugin works well as an IDE-like solution: https://github.com/python-mode/python-mode
-
Moved from IDE to Terminal + VIM. Need tips for managing it correctly.
If you're happy with a plugin, pymode (https://github.com/python-mode/python-mode) is worth a look. Map running to r (or whatever works for you) makes running easy. End result is IDE-like.
-
IDE Similar to PyCharm for Work
If you want a quick start to building Vim based IDE for Python, I recommend python-mode. It gives you most of the things you're going to need in one plugin, there are often better implementations of some of its features in other more specialised plugins, but if you don't have time to research and learn to integrate a lot of different plugins, it's a great base to start from. Over time as you learn how you prefer to work and found specialised plugins that suits your workflow better, you can disable many of its features and replace them with more specialised plugins.
-
Python Devs who Use Vim, Share Your Expertise!
I also highly recommend python-mode for Python refactoring using python-rope. It supports variable/function/class renaming, extract method/local variable, variable/method inlining, adding/removing/rearranging parameters from method signature, removing unused and duplicate imports, and many other useful code transformations.
-
My problem with vim
However, adding all these things by hand takes time. I only know python so that's what im using vim for, and i tried out pymode, but that's way too many features introduced at once. For this reason I've also avoided using others configurations.
-
Folding annoyance
Eg for python (there are several others) https://github.com/python-mode/python-mode
-
Use Vim as a Python IDE
There is a plugin called python-mode. This adds syntax highlighting and many other features to your vim.
- Vim with Python
-
How to use python (no IDE)?
Update that tool to work with Python. For example, Python-Mode.
What are some alternatives?
coc.nvim - Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.
Jedi-vim - Using the jedi autocompletion library for VIM.
ale - Check syntax in Vim/Neovim asynchronously and fix files, with Language Server Protocol (LSP) support
Suplemon - :lemon: Console (CLI) text editor with multi cursor support. Suplemon replicates Sublime Text like functionality in the terminal. Try it out, give feedback, fork it!
vim-lsp - async language server protocol plugin for vim and neovim
python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community
completion-nvim - A async completion framework aims to provide completion to neovim's built in LSP written in Lua
vim-slime - A vim plugin to give you some slime. (Emacs)
deoplete.nvim - :stars: Dark powered asynchronous completion framework for neovim/Vim8
vim-pudb - Manage pudb breakpoints directly from vim