#vimovember — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #vimovember, aggregated by home.social.
-
Day 16 Tabs ⚙
Tabs aren’t something I use. I know you can use gt, and Gt to go to the next/previous tab. I use actually that with #Tridactyl, the plugin for Firefox/Librewolf, that brings #Vim keybindings in your browser.
-
Day 13 Marks ⚙️:
Marks have some great features, but I found myself not using them often.
We saw on Day 7, that you can substitute on a visual selection, you can actually
do the same with marks in Ex commands::'a,'b s/foo/bar/
That will substitute foo by bar between marks `a` and `b`.
Check the link in the thread for more tips about marks
#Vimovember #vim #neovim #editors #opensuse #FOSS #terminals
-
Day 12 - Macros ⚙️
This macro allows me to change a pattern in multiple files really quickly.
I ❤️ it!
The crucial part is to use :wn
If interested read the post ⤵️
#Vimovember #Vim #neovim #editors #terminals #opensource #Linux #BSD #FOSS #shell
-
Please boosts 🙏
We want more people 🙌🏼
#Vimovember #vim #neovim #editors #terminals #linux #opensource #mastodon #fediverse
-
:1,.d " delete from top to current line
:%d " delete the entire file
:/foo/,/bar/d " delete from the first match of foo to first match of bard3w " delete three words
dG " delete to end of file
dgg " delete to beginning of fileThere are so many great ways to edit your files with #Vim
3/3