I don't get the appeal of vim over vim emulators. I've always used essentially stock vim with no plugins so I find myself using JetBrains emulated vim. A language server has become necessary for me. If vim LSP competes with JetBrains LSP, I'd make the switch. I have never tried but if I was taking bets I'd bet on JetBrains for what I assume are obvious reasons.
Language servers are pluggable to any frontend via the Language Server Protocol (LSP), and vim has plenty of frontends to go with whatever backend you desire. I like https://github.com/neoclide/coc.nvim, check out the gif on the readme
Neovim 0.5 which will come with inbuilt, native LSP is expected to be released soon. It will also feature init.lua - vim config in Lua instead of vimscript!
I have never tried a Vim emulation mode that was not extremely irritating because it got some basic thing very wrong and multiple basic things not quite right.
Its a genuine question. Back in the day (90s) there were actual wars being fought between Emacs and VIM where the strongest argument against Emacs was that its somewhat bloated taking up a lot more disk space than Vim. That argument is no longer (as) valid since disk-space is so cheap, so I just figured VIM was either dead or dying.
I can crush my previous programming speed by orders of magnitude (~90wpm typist for years) with Vim extensions added onto whatever IDE, and prefer to just program in Vim as is anyway, being moderately new to programming.
I started out my coding career using sublime, moved to atom relatively quickly, experimented with jetbrains products but didn’t like it, and moved to VSCode soon after it was released and have been using it since.
There were a few people at work who had been on the same path as me before and were trying to turn me to the “dark side”, and I eventually gave in and told myself I would give it a try for two weeks and see how I liked it.
Up until a few months ago I would have thought vim would never replace vscode for me, but here I am typing this message having been using vim as my only editor/ide for the last two and a half months.
I use neovim nightly with the builtin lsp and treesitter support and I don’t think I’ll ever go back. It’s not only faster itself, but I am more efficient using it.
It would be interesting to see some numbers on this, but I have the impression that (neo)vim users are growing in numbers. I'm just a HTML+CSS guy building small websites, and learning vim has been huge boost not only to my speed/efficiency, but to the amount of fun I'm having! I ditched VScode aprox 4 months ago an basically live in the terminal now with tmux, nvim and fzf. It's such a powerfull combination!
As I discovered yesterday, :Gbrowse also works for other contexts such as jumping directly to the GitHub page for a specific commit after opening one via :Git log or :Git blame.
I use a similar extension for VS Code. My use case is to share certain lines of code with coworkers. I didn't realize it would be so helpful, but I probably use it at least 3 times every day.
Which one are you using? I'd love this. It's usually precisely to reference it in a bug report, to a coworker, in a support case explaining software behaviour, etc.
I send links to specific lines or chunks of code pretty much every day (using a similar VS Code plugin), usually to show an example of a pattern or show where / how a particular piece of logic is implemented. Or sometimes to give an idea of a possible home for a new piece of logic
This use case doesn’t need to round trip to GH? The URL could be yanked straight into a vim register, including * or + (making it available to whatever clipboard your OS fancies)
37 comments
[ 1.8 ms ] story [ 95.2 ms ] threadSource: Am noobie. Use (nv/v)im.
I feel much more productive with vim's speed and plugins then with IDEA\Goland, where I was using less that 20% of it's power I guess.
Not to mention that even on MBPr 2019 with 2-3 copies of IDEA in action - IDEA starts to lag like crazy.
If you mean as a text editor, absolutely and most definitely yes.
There were a few people at work who had been on the same path as me before and were trying to turn me to the “dark side”, and I eventually gave in and told myself I would give it a try for two weeks and see how I liked it.
Up until a few months ago I would have thought vim would never replace vscode for me, but here I am typing this message having been using vim as my only editor/ide for the last two and a half months.
I use neovim nightly with the builtin lsp and treesitter support and I don’t think I’ll ever go back. It’s not only faster itself, but I am more efficient using it.
https://www.murilopereira.com/the-values-of-emacs-the-neovim...
> :{range}GBrowse [args]
I will select a block, :Gbrowse, then copy and paste the url to my collaborators.
Basically a round about way of linking to lines a file.