ranger

ranger is a text-based file manager written in Python. Directories are displayed in one pane with three columns. Moving between them is accomplished with keystrokes, bookmarks, the mouse or the command history. File previews and directory contents show automatically for the current selection.

Features include: vi-style key bindings, bookmarks, selections, tagging, tabs, command history, the ability to make symbolic links, several console modes, and a task view. ranger has customizable commands and key bindings, including bindings to external scripts. Ranger also comes with its own file opener, rifle(1). The closest competitors are Vifm and lf.

Installation

Install the ranger package, or ranger-gitAUR for the development version.

Usage

To start ranger, launch a terminal and run ranger.

KeyCommand
Open the manual or list keybindings, commands and settings
, EnterLaunch files
, Select file in the current directory
h, Travel up and down in the directory tree

Configuration

After startup, ranger creates a directory ~/.config/ranger. To copy the default configuration to this directory issue the following command:

$ ranger --copy-config=all
  • - startup commands and key bindings
  • - commands which are launched with
  • - applications used when a given type of file is launched.
only needs to include changes from the default file as both are loaded. For , if you do not include the whole file, put this line at the top:
from ranger.api.commands import *

See for general configuration.

Move to trash

To add a keybind that moves files to your trash directory with , amend the configuration file as follows:

Alternatively, use GIO commandline tool provided by glib2 package:

map DD shell gio trash %s

Inspecting and emptying the "trash" is normally supported by graphical file managers such as , but you can also see the trash with the command , and empty it with: .

Defining commands

Continuing the above example, add the following entry to empty the trash directory .

To use it, type :empty and Enter with tab completion as desired.

Color schemes

Ranger comes with four color schemes: , , and . You can change your color scheme using:

set colorscheme scheme

Custom color schemes can be placed in ~/.config/ranger/colorschemes.

Color highlight in file previews

Install the package, then copy to and edit the variable in the configuration file of ranger to your liking. The complete list of supported themes can be obtained via .

File association

Ranger uses its own file opener called . It is configured in . Run ranger --copy-config=rifle if it does not exist. For example, the following line makes the default program for tex files:

ext tex = kile "$@"

To open all files with , make sure your $EDITOR and are set and add:

else = xdg-open "$1"
label editor = "$EDITOR" -- "$@"
label pager  = "$PAGER" -- "$@"

Tips and tricks

Archives

These commands use to perform archive operations.

Archive extraction

The following command implements archive extraction of the selected items to the current directory.

Compression

The following command allows users to compress several files on the current directory by marking them and then calling . It supports name suggestions by getting the basename of the current directory and appending several possibilities for the extension. You need to have installed, otherwise you will see an error message when you create the archive.

External drives

External drives can be automatically mounted with udev or udisks. The default key mappings to go to common mount points /media and are and respectively.

Hidden files

You can toggle the visibility of hidden files with the following command: :set show_hidden!, or use to make hidden files visible.

To make this permanent, add the setting to your configuration file:

Alternatively, hidden files can be toggled by pressing .

Image mounting

The following command assumes you are using CDemu as your image mounter and some kind of system like autofs which mounts the virtual drive to a specified location ('/media/virtualrom' in this case). Do not forget to change mountpath to reflect your system settings.

To mount an image (or images) to a cdemud virtual drive from ranger you select the image files and then type ':mount' on the console. The mounting may actually take some time depending on your setup (in mine it may take as long as one minute) so the command uses a custom loader that waits until the mount directory is mounted and then opens it on the background in tab 9.

New tab in current folder

You may have noticed there are two shortcuts for opening a new tab in home (n and ). Let us rebind :

PDF file preview

By default, ranger will preview PDF files as text. However, you can preview PDF files as an image in ranger by first converting the PDF file to an image. Ranger stores the image previews in . You either need to create this directory manually or set preview_images to in to tell ranger to create it automatically at the next start. However, note that preview_images does not need to be set to the whole time to preview PDF file as images, only directory is needed.

To enable this feature, uncomment the appropriate lines in , or add/uncomment these lines in your local file .

Synchronize path

Ranger provides a shell function . Running instead of ranger will automatically cd to the last browsed folder.

If you launch ranger from a graphical launcher (such as , where TERMCMD is an X terminal), you cannot use . Instead, create an executable script:

ranger-launcher.sh
#!/bin/sh
export RANGERCD=true
$TERMCMD

And add the following at the end of your shell configuration:

This will launch only if the variable is set. It is important to unset this variable again, otherwise launching a subshell from this terminal will automatically relaunch ranger.

Preventing nested ranger instances

You can start a shell in the current directory with , when you exit the shell you get back to your ranger instance.

When you however forget that you already are in a ranger shell and start ranger again you end up with ranger running a shell running ranger.

To prevent this you can create the following function in your shell's startup file:

ranger() {
    if [ -z "$RANGER_LEVEL" ]; then
        /usr/bin/ranger "$@"
    else
        exit
    fi
}

Troubleshooting

Artifacts in image preview

Borderless columns may cause stripes in image previews. In set:

set draw_borders true
gollark: Well, a pair of complex numbers.
gollark: Nope! It's a complex number.
gollark: I haven't followed the actual maths, but your TeX seems okay. Although this won't work because your square root is negative.
gollark: The errors are somewhat unhelpful.
gollark: You forgot a }, I think.

See also

This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.