Quickly navigating to any word in the viewport with only a few keystrokes?

There are plugins like easymotion where you can do a quick search for 2 or so characters, and it highlights over every word with 2 characters which you can type to navigate to. I would like something like that, but for any word in the viewport.
73428331-f0368580-4349-11ea-9045-9dd4fb89ce08

1 Like

If I understood correctly, by viewport you mean any split visible (window), if so, take a look at Leap, that’s exactly what it does.

I got a comment elsewhere suggesting hop.nvim with this keymap:

    vim.keymap.set('', '<Space>w',
      function() require('hop').hint_words() end,
      { remap = true, desc = 'move to word in buffer' })