this tutorial covers the complete usage of rovr, from basic navigation to advanced file operations.
when you first launch rovr, you’ll see the main interface with three panels:
- file list (center): displays files and folders in the current directory
- sidebar (left): shows directory tree and pinned folders
- preview (right): displays file content or metadata
- use the arrow keys or vim-style keys (
hjkl) to navigate
- press
enter or l to enter a folder
- press
h or backspace to go back up
- press
? to see the help screen with all keybindings
rovr uses a background-highlighted option to show your currently selected item, and switches to a different colored text when unfocused.
- move cursor right/select option:
l or right arrow key
- move cursor left:
h or left arrow key
- move cursor up:
k or up
- move cursor down:
j or down
- go to the first item:
g or home
- go to the last item:
shift+g or end
- go up the file tree:
h or left arrow key
- go down the file tree:
l, right arrow key, or enter
- go back in history:
backspace or u
- go forwards in history:
space
- pin the currently focused folder:
shift+p
- toggle hidden files visibility:
. (period key)
- reload file list:
ctrl+r
rovr supports multiple selection modes for efficient file operations:
- select range: use
shift with arrow keys (only in visual mode)
- select all:
% or ctrl+a
- visual mode:
v for extended selection
once you have files selected, you may choose to use these operations or use the buttons available:
- copy:
y or ctrl+c
- cut:
x or ctrl+x
- paste:
p or ctrl+v
- delete:
d or delete key
- rename:
r or f2
- create new entries:
ctrl+n or o
- compress to archive:
E (uppercase E)
- extract archive:
ctrl+e
- copy path:
Y (uppercase Y)
- search in current folder:
ctrl+f or /
- pin current folder:
P (uppercase P)
no images again lol
- command palette:
ctrl+p
- open new tab:
n
- close current tab:
w
- next tab:
ctrl+j
- previous tab:
ctrl+k
- toggle sidebar:
S
- toggle preview:
I
- toggle footer
- toggle header
looks very similar to another file explorer…
- focus sidebar:
s
- focus file list:
esc
- focus preview:
i
- focus metadata:
m
- focus processes:
#
- focus clipboard:
c
the preview panel shows different content based on file type:
- text files: syntax-highlighted content (optionally
bat is available as a plugin)
- images: the image itself, using proper protocols (refer to image-previews)
- archives: list of contained files
- folders: file count and size information (if metadata panel is focused)
rovr stores its configuration in your system’s standard config directory:
- windows:
%APPDATA%\rovr\config.toml
- macos:
~/Library/Application Support/rovr/config.toml
- linux:
~/.config/rovr/config.toml
rovr is designed similarly to ghostty where it should work with minimal configuration, but has a lot of customisable options.
here are some common changes
# hide tooltips when hovering over buttons
# make ui not change based on width/height
use_reactive_layout = false
# yazi uses scrolloff 5, but nnn is 3, mc is 0, vifm is 4
# so it really is up to you, default is 3
# fit the big buttons into a single line
# show hidden files (toggleable by `.`)
now that you know the basics, explore these other topics:
for more help, press ? in rovr to see all available keyboard shortcuts or visit the documentation.