I’d like actual examples instead of “I work faster”, something like “I can move straight to the middle of the file with 7mv” or “I can keep 4 different text snippets in memory and paste each with a number+pt, like 2pt”, things that you actually use somewhat frequently instead of what you can do, but probably only did once.

  • I Cast Fist@programming.devOP
    link
    fedilink
    arrow-up
    6
    ·
    2 months ago

    Bouncing on parentheses with % makes structured files easy to get around in.

    That’s something I wasn’t aware you could do in vim. % jumps to the next parentheses character, whether ( or )? Does it work with brackets and curly braces too?

    • zagaberoo@beehaw.org
      link
      fedilink
      arrow-up
      4
      ·
      2 months ago

      Not just the next parenthesis that appears, It jumps to the matching one that opens or closes the one under the cursor. Hitting it repeatedly bounces back and forth around the text that pair of parentheses enclose.

      It works not only with brackets and curly braces, but also with opening and closing tags in XML etc.

      I feel like other editors must have an equivalent feature, though. I’d say the fact that vi can put such a specific action under just % rather than some nasty chord or mouse operation is what really makes it shine here.

    • expr@programming.dev
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      It generally works with a wide variety of delimiters. There’s a widely used plugin to make it work with even more, including language-specific keyword pairs.