#file-manager #key-bindings #experimental #tui #config-file #vim #directories

app trooper

An EXPERIMENTAL file manager inspired by ranger

6 releases (3 breaking)

0.5.0 Oct 12, 2023
0.4.0 May 5, 2023
0.3.1 Mar 3, 2023
0.2.1 Feb 13, 2023

#543 in Filesystem

Download history 4/week @ 2024-02-27 3/week @ 2024-03-12 1/week @ 2024-03-26 19/week @ 2024-04-02 37/week @ 2024-04-09 6/week @ 2024-04-16

63 downloads per month

GPL-2.0-only

73KB
1.5K SLoC

Trooper 0.4.0

Trooper is a tui file manager with VIM key bindings inspired by the great ranger.

screenshot

Features

The goal of trooper is to adhere to the unix philosophy. Do one thing and do it well, in this case that thing is managing files. Trooper is not supposed to edit files, preview files (might change my mind on this one), run files or anything which is does not aid in the goal of managing files and directories.

Implemented

  • Navigating the file system
  • Copy, cut & paste files across simultaneous running instances of trooper
  • Create bookmarks for quick access to directories
  • Renaming files
  • Persistence for bookmarks and files in the yank register
  • Cross-platform support (Linux, Windows and probably Mac)
  • Configuration file for keybindings
  • Visual mode for operating on multiple files at once

Planned

  • VIM-like repeats of commands (4dd would cut 4 files at once for example)
  • Changing the working directory of the shell when exiting trooper

Installation

Install the binary package from crates.io using Cargo with:

cargo install trooper

Configuration

Trooper will look for a config file located at .config/trooper/config.ini in your home directory. On Windows this is %USERPROFILE%\.config\trooper\config.ini with the equivalent on UNIX being ~/.config/trooper/config.ini.

The config format is a simple ini format with = accepted as the only delimiter. It maps sequences of keystrokes to actions in the program. The default configuration is located in the /assets directory. It is this configuration which is overwritten by bindings in the user condfig file.

Syntax

All keybindings are located under the two sections denoted [normal] and [visual] in the ini file. Each section specifies the actions which will be availible and through what keybinding they're accessed.

Most keys are mapped simply by the character on the keyboard. Some special keys instead have to be escaped with the same syntax as in a Vim config. The escaped versions follow below:

<lt> (<)
<gt> (>)
<Space>

Most keys can also be mapped with the ctrl modifier active. This is similarly done as in a Vim config:

<C-w> (Ctrl+w)

Dependencies

See Cargo.toml

Dependencies

~8–18MB
~238K SLoC