1. 63
    1. 14

      Nice write up. I actually didn’t know about A, so I’ll be using that today. I usually do $i or $a to insert at the end of a line.

      52gg jump to line 52

      I might be wrong, but I think you can also do :52 to go to line 52.

      1. 10

        And also 52G

        (gg is a vim-ism, so if you’re just using plain old vi you need to use <number>G or :<number>)

      2. 10

        I might be wrong, but I think you can also do :52 to go to line 52.

        I love using this command. It is also possible to copy or move by expanding the command. Using :52co12 will copy line 52 to below 12. Using :52co. will copy below the current line. It even works with ranges :52,55mo. will move 52 through 55 to the current line.

        1. 10

          53,55norm! A; will at a semicolon to the end of every line in that range

      3. 3

        Thank you!

        Yep, I actually prefer the :52 style but I didn’t want to get into explaining : commands for beginners for this article. ;-)

      4. 1

        I usually avoid ‘$’ because I’m less accurate typing it haha!

        1. 3

          I have a very small keyboard so R, $, and 4 are the same key, but with different modifiers.

          1. 2

            is it a Planck?

            1. 2

              Yup!

              1. 2

                I’ve been using one for more than a year now. I like it so much, specially that, by default, the escape key replaces caps lock, it’s perfect for vim.

        2. 1

          Cool kids do nnoremap L $.

          1. 1

            That’s a good idea. Unfortunately, I work in two separate vim-emulating editors which don’t support these gizmos.

          2. 1

            I actually use L M and H quite a bit, especially when I need to look at neighbouring code. I don’t use the split feature very often, though, do you?

          3. 1

            Even cooler kids do:

            " Jump to first character or column
            noremap <silent> H :call FirstCharOrFirstCol()<cr>
            
            function! FirstCharOrFirstCol()
              let current_col = virtcol('.')
              normal ^
              let first_char = virtcol('.')
              if current_col <= first_char
                normal 0
              endif
            endfunction
            

            Explanation.

            (I realise you were talking about nnoremap L $ and not nnoremap H 0, but I think the two ideas are related and I thought this might useful to somebody out there).

            1. 2

              That can be a lot shorter with expression mappings. This is what I map (to Home):

              noremap <expr> <Home> col('.') is# match(getline('.'), '\S') + 1 ? '0' : '^'
              imap <silent> <Home> <C-O><Home>
              

              Expression mappings are really useful!

              Some other notes:

              • normal means that Vim will use the currently mapped key, rather than the default one. So if you nnoremap 0 .... then your mapping may break since normal 0 will run that mapping. Use normal! to always ignore user mappings. You should almost always use normal! unless you have a specific reason not to.

              • You can create a script-local function with fun s:FirstCharOrFirstCol() and then refer to it with nnoremap H <SID>FirstCharOrFirstCol(). I personally much prefer this as it doesn’t pollute the global namespace so much with what is essentially useless stuff.

    2. 14

      Intermediate vim stuff I regularly use:

      • Vertical split (:vs)
      • Ctrl-d/u to scroll up and down a half-page at a time
      • zz to center the viewport on the cursor
      • Pressing * on top of a word teleports you to the next instance of that word in the page.
      • Pressing % on top of a curly brace will teleport you to the matching curly brace. Works with other types of block delimiters, too.
      1. 3

        Yeah, these are all great!

        Another thing I really wanted to cover but didn’t quite get to was using . to repeat commands.

    3. 7

      Not sure this is really “intermediate” as it still seems beginnerish, but still important things for any Vim user to get used to. I think intermediate Vim would be more about how to improve usage of makeprg, quickfix, jumplist, netrw, etc.

      1. 2

        I have been using vim for a while, and have no idea about the things in your list. I guess I have some reading to do

      2. 2

        I have to agree. I’d consider these bare minimum, without knowing which I don’t know how or why you’d be using vim. I’d forgotten about quickfix!

    4. 11

      As a programmer, you spend a lot of time editing and navigating code.

      As an Emacs user, I spent most of my time configuring Emacs

      1. 3

        As long as you did it in Emacs, and not vim this is ok.

    5. 4

      I never use the (i)n, (a)round, (f)orward, or (t)o commands. It seems like there is always something to learn with vim.

      1. 2

        I learned that vim understands tags. That was pretty cool. Still have to try it.

    6. 4

      The best piece of Vim advice I ever got was by Steve Losh: define aliases to make it trivial to open and reload your vimrc.

      The idea of this chapter is that you want to (make it easier to (make it easier to (edit text))).

      Once I had that, I was far more likely to define useful mappings, which made editing text easier, which allowed me to think at a higher level, which made me more likely to think of useful mappings… this was actually life-changing, and a principle I’ve tried to replicate with every other tool I use.

      For the impatient:

      • nnoremap <leader>ev :vsplit $MYVIMRC<cr> " Edit my Vimrc
      • nnoremap <leader>sv :source $MYVIMRC<cr> " Source my Vimrc
      1. 3

        A good continuation of this is aliases for editing and sourcing your shell rc file.

    7. 4

      I knew about ci( (or whatever other text object), but not about ca(. So this article was helpful to me for that alone.

    8. 6

      If this is “intermediate”, then there are at least 20 experts levels on top.

      I don’t think it makes sense to look at lists of things you could do with vim. Instead observe yourself and look for one pattern you do often. Then research an optimization for that. Rinse. Repeat. Do it one by one. Vim is around for decades and it will still be there for you in a few years.

      1. 6

        I believe learning vim is a daunting task and tutorial resources which show off the power in a nice and friendly way can be a very good introduction to the subject. I see your point about observing and researching optimizations, but at first sight “modal”, “command mode” and even “:wq” might be too much for someone just trying to get their feet wet.

        1. 2

          Hey thanks, I appreciate it. :)

          I’ve been pair programming a lot lately and also mentoring some new vim users, so I wrote this little guide to help vim beginners level up their skills a bit.

          What I noticed is that folks who were new to vim found both text-objects and composing commands to be pretty mind blowing—so yep, this guide only barely scratches the surface but I just wanted to give newbies a taste for what makes vim so powerful.

      2. 5

        I don’t think it make sense to dismiss alternative presentations of information that don’t help you learn as unhelpful for everyone else. I’ve been using vim for just over a decade now, full time, and learned a couple of new tricks just by glancing over this article.

        1. 3

          I’m in the same position as you are. Have been using vim for a few years and I still learned something new which I can integrate in my editing workflow.

      3. 3

        I’ve been using vim for like 10 years and I don’t think I’ve ever used I, I use A constantly, but I always use 0 to go to the front of a line.

        Never occurred to me to look for something because it feels find. I learned a lot by thinking “there should be a better way” and then finding it, looking at these kinds of articles every once in a while is useful for finding unknown unknowns.

        1. 1

          I’m similar. I use A all the time, and I know about I but yet I find myself doing 0i or ^i instead.

    9. 4

      Try running vimtutor in your nearest terminal to learn about all of this, and more.

    10. 2

      One day I sat down and actually read through :help in order to get the ideas behind most of the commands. This article sums up most of what I need to get around quickly, but for more advanced stuff Vi[m] never felt intuitive enough for me and certain tasks were simply too complicated to carry out despite being so simple.

      Then there was vis. It combines most of Vim with Plan 9’s structural regular expressions, concepts such as multiple cursors and more.

      Suppose you have a large text and want to edit all occurences of a word as you go: with Vim you’d either record a macro and repeatedly apply it, or (repeatedly) ran some regex substitution (over a range of text) - until you get it right. With vis, selecting all occurences of “foo” is one :x/foo/ away, leaving you with N visual selections. Pressing escape brings you to N cursors, ready to edit them as if they were one.

      This is easily expandable and aids my natural way of thinking immensely.

      Want to sort text? Select it with v and pipe it through sort(1) with :|sort. Want to include a file or some commands input? :< cat file. Want to pipe text to some command (without reading its output back)? :> cmd.

      This is intuitive to me. Easily leveraging external commands is a huge win. No built in stuff that can be done with regular shell, no VimL, no legacy support (vim), no built in terminal emulator (neovim), scripting support through Lua.

      Note that I’m not trying to sell you something here; whatever works for you is good. It should rather outline what problems I had with Vim and how vis leverages them with a clean design. Editing code gets fast when you don’t have to think about how to carry out your complex/efficient operation successfully - reuse tools in your $PATH and/or break things down to smaller operations while still keeping focus (read: cursors) where needed.

    11. 2

      As a programmer, you spend a lot of time editing and navigating code.

      In my experience, not as much as all editor-focused write-ups want you to think. Presumably, you spend much more time thinking what is it that you actually want to do. (Disclosure: my perception is informed by me spending most of the time in Python, as opposed to more text- and repetition-heavy languages like Java.)

      1. 1

        Is it? I’m trying to find breakdowns of how programmers spend their time and it’s tricky. I’d suspect it would be something like half our technical time is spent debugging.

      2. 1

        I second this. Also for more verbose languages like Java there are usually very good supporting tools, and You usually don’t use a simple editor, but a semantically aware IDE for the task.

        1. 1

          Agreed.

          I don’t get why people have this need for optimising their text editing so much. They spend so much time trying to learn all these handy keyboard shortcuts and tricks, that the actual time they save when editing text is meaningless.

          1. 3

            For me it’s absolutely nothing to do with saving time and everything to do with comfort. It didn’t take long to get over the initial hurdle of just running vimtutor and learning the basic keys to move around and edit. From there it was just editing and occasionally thinking ‘I do this [thing] a lot, is there a way to optimise it? Same for my shell setup. It’s not really a deliberate decision to spend ages customising everything, it’s a gradual process that occurs naturally over years out of curiosity, and it pays off.

            Edit: the immediate benefit post-vimtutor was being able to keep my hands off the mouse, and that was enough to make it more comfortable than what I had been doing before. I don’t think I would have bothered if it had been that stressful and time consuming just to get started.

    12. [Comment removed by author]