this post was submitted on 28 Oct 2025
19 points (91.3% liked)

Linux

9966 readers
466 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
 

I’d like to be able to navigate text in a pager with Vim-style modal editing (moving with hjkl and yank/paste with y/p). Is there a way to enable this in the default pager, or is there an alternative pager that supports this kind of modal behavior?

top 5 comments
sorted by: hot top controversial new old
[–] thingsiplay@beehaw.org 17 points 4 days ago (2 children)

You can set Vim as your pager. If you are on Neovim, its very easy, just set this variable:

export PAGER='nvim +Man!'
export MANPAGER="${PAGER}"

Then try man grep. These variables could be set in your .bashrc in example. If you use the "original" Vim, it's a bit more complicated to setup. I did that before too, so it's definitely doable.

[–] SinTan1729@programming.dev 3 points 3 days ago* (last edited 3 days ago)

This, but I use bat since it seems to be faster for this.

Edit: I should clarify that I only use bat as the MANPAGER, since bat uses less under the hood for paging anyway. But with support for a built-in pager in the new release, perhaps it makes sense to set it as the PAGER too.

[–] Fizz@lemmy.nz 1 points 4 days ago

What's the Wayland equiv? I did a quick search and got a few different answers. Apparently bashrc still works since its your term shell but not for setting variables in the login shell. One comment said it could be ~/.profile

Do you know?

[–] whimsy@lemmy.zip 15 points 4 days ago

I'm a bit confused by your question. less is usually the default pager and it supports vim style navigation out of the box. Moreover, a pager is just for viewing content (historically which didn't fit on the screen), and not for editing. So I'm not sure what you mean by pasting

[–] rc__buggy@sh.itjust.works 3 points 4 days ago

I'm on my phone, but when using less "v" opens the file in $EDITOR. I don't remember if it defaults to read only