• Coolcoder360@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    1 day ago

    Just switch to visual mode and select the text and yank it.

    Press v where you want to start the selection from (switches to visual mode), hjkl (or arrow keys) to move the cursor to the end, then you can yank it from there. It’ll highlight what you’re selecting just like you’re using your mouse, but you’re using the keyboard.

    If you want to get really fancy there are 3 different kinds of visual mode, but lower case is the most often one that I use because it’s char by char, V is line by line, Ctrl+v is “block” (you can select chunks across several lines omitting things at the beginning or end of lines).

    Ctrl+V to do the block mode is nice if you need to edit the same part of several lines that all line up vertically, you just Ctrl+v, jk to select the lines, then I (shift+i) to insert on all those lines (if you’re in vim you can delete things in insert mode also, if you’re in vi you’ll need to delete first then insert)

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      16 hours ago

      Yeah, when I then used Visual Block mode to do the multi-line cursor, I realized I probably could’ve selected+yanked it that way, too.

      But that is some good info nonetheless. I wasn’t actually aware of the different Visual modes…

      • dQw4w9WgXcQ@lemm.ee
        link
        fedilink
        arrow-up
        3
        ·
        16 hours ago

        I might be in a minority of this, but using numbers that way breaks my flow for 2 reasons: Firstly, any number of lines greater than around 3 or 4 means I have to stop and manually count. Not that counting to 6 takes a long time, but it does use some mental capacity while I want my mind focused on the actual code. Secondly, I don’t have touch typing in my fingers for the number line on my keyboard. If I need to type a number, I either have to look down at my keyboard, or move my hand over to the numpad. In both cases it would be quicker for me to Vjjjjjy.

        • fl42v@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          14 hours ago

          manually count

          That’s why rnu (i.e. relative numbering) is mentioned, tho