home.social

#vimovember — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #vimovember, aggregated by home.social.

  1. 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.

    #Vimovember #vim #neovim

  2. 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

  3. 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 ⤵️

    lazybea.rs/vimovember

    #Vimovember #Vim #neovim #editors #terminals #opensource #Linux #BSD #FOSS #shell

  4. :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 bar

    d3w " delete three words
    dG " delete to end of file
    dgg " delete to beginning of file

    There are so many great ways to edit your files with #Vim

    3/3

    #Vimovember #neovim #editors #terminals #opensource