2
info foo

Next, I am in a foo page with links navigated by enter and arrow keys. Are there vim keymap settings for this?

Chris
  • 961
  • 7
  • 20

2 Answers2

3

There are, info has this option:

--vi-keys
              use vi-like and less-like key bindings.

so your command for foo is

info --vi-keys foo
Tagwint
  • 2,480
0

If you want to make @Tagwint 's solution more systematic, you may add an alias like this in your .bashrc, .zshrc, or whichever configuration file sourced by your environment:

alias info='info --vi-keys'
Pierre
  • 131
  • 3