Earlier quoted context omitted.
I am so used to sed-style, regex powered find/replace, that this use admittedly never occured to me. As a result, multi-cursor seemed mostly useless outside of pair programming that I never do. I will have to try it out once it lands in neovim just to see if I can wrap my muscle memory around it.
For me the nice thing about multiple cursors is when it would take more time to write the regex than it does to just throw down say 8 cursors and update the spots.
Neovim 0.12.0
71–80 of 271 posts
Re: Neovim 0.12.0
#72I'm using VIM - Vi IMproved 9.1. What am I missing? I'm kind of desperate to switch. Getting massive FOMO from colleagues using VS Code. But I really like using the keyboard to navigate. What should I do? Does NeoVim support Claude Code?
:term claude
It will also expand special characters so you can do something like
:term claude “refactor %”
And Claude starts work on your current file right away. Also your buffers will update with Claude’s edits!
Re: Neovim 0.12.0
#73If anybody wants to checkout my site to learn the basics of vim. Here it is: https://vimgolf.ai I proxy to neovim instances for each level. Still working out some kinks but soon to complete it
Re: Neovim 0.12.0
#74Is anyone using them vim with Claude or any of these coding tools? I want to, but I haven’t found a good workflow.
:term claude
In a split goes a long way for me!
Re: Neovim 0.12.0
#75Earlier quoted context omitted.
Whats with all the fuss over multicursor. How is this different from just using '.'
dot repeat is the wrong comparison. A closer one would be macros, but even then a good multiple cursors implementation is often faster, more intuitive, and requires less cognitive overhead. One of the better examples of the usefulness of multiple cursors is from Emacs Rocks (link goes to 0:23): https://m.youtube.com/watch?v=jNa3axo40qM&t=23s
Re: Neovim 0.12.0
#76Up next for 0.13: multiple cursors! I have no idea what I'd do with this feature but it sounds intriguing. https://neovim.io/roadmap/
Oh neat!
Re: Neovim 0.12.0
#77Up next for 0.13: multiple cursors! I have no idea what I'd do with this feature but it sounds intriguing. https://neovim.io/roadmap/
Re: Neovim 0.12.0
#78Up next for 0.13: multiple cursors! I have no idea what I'd do with this feature but it sounds intriguing. https://neovim.io/roadmap/
Multi cursor support in VSCode replaced 98% of my need for macros. Yes, macros are more powerful, but they are pretty easy to get wrong. With multiple cursors, it's far easier to spot where your inputs don't work out and adjust accordingly. Multi cursor is the feature that increased my productivity the most across the board.
(Just like searching with / replaced 98% of my navigation)
Editing something without having to actually place the cursor anywhere is a killer feature
Also neovim can show you your substitutions live, no need for a plugin anymore. It's the default.
Re: Neovim 0.12.0
#79If anybody wants to checkout my site to learn the basics of vim. Here it is: https://vimgolf.ai I proxy to neovim instances for each level. Still working out some kinks but soon to complete it
Seems like you need an account just to try it.
Re: Neovim 0.12.0
#80> - d21b8c949ad7 pack: add built-in plugin manager `vim.pack Can someone try to sell me this over lazy.nvim? I asked Claude to convert lazy config to pack and I was not happy with it because how verbose it turned out
I always thought Vim/Nvim already had a built-in package manager, git clone inside ~/.vim/pack/*/start, am I missing anything by not using a "real" package manager?