Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

lets puts it this way the ++ctrl+PageUp++ shortcut is a quite common shortcut to switch to next tab along with ++ctrl+PageDown++ which does the opposite with go to previous tab
vifm :tabn :tabp why isn't it implemented in vifm unlike nvim? also <s-pageup> with ++shift+pageup++ doesn't seem to work either.

1 Answer

0 votes
by

lets puts it this way the ++ctrl+PageUp++ shortcut is a quite common shortcut to switch to next tab along with ++ctrl+PageDown++ which does the opposite with go to previous tab

You can map the key's escape sequence directly as in this question. Vifm handles input through curses library which doesn't support every possible key.

vifm :tabn :tabp why isn't it implemented in vifm unlike nvim?

:tabnext and :tabprevious are implemented in Vifm.

also <s-pageup> with ++shift+pageup++ doesn't seem to work either.

Don't know if that's even supported by any terminal.

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...