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?

2 Answers 2

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
3
  • my b -- didn't realize I didn't accept this
    – Chris
    Commented Jul 12, 2020 at 4:48
  • 1
    The default vi-like bindings are really unsatisfactory, this should be tweaked using an .infokey file (info info infokey !) Commented Jan 14, 2021 at 11:13
  • or simply use vim ;)
    – xeruf
    Commented May 29, 2022 at 23:20
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'

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .