naviga

Crates.ionaviga
lib.rsnaviga
version0.1.4
sourcesrc
created_at2022-09-01 20:34:41.290719
updated_at2022-09-06 20:52:21.979026
descriptionNaviga helps users navigate easily through directories
homepage
repositoryhttps://github.com/ByHelyo/naviga
max_upload_size
id656994
size36,880
Franck Hu (ByHelyo)

documentation

README

Naviga

About

Naviga helps users navigate easily through directories. Naviga's design is inspired from Ranger.

Installation

$ cargo install naviga

A program can't change the current directory as a process can only affect its own environment. A shell function must be added in your shell configuration file (.bashrc, .zshrc) the terminal must be restarted.

I agree, a shell function is not the smartest way.

function nav() {
    naviga

    if [ -f "$HOME/naviga.sh" ]; then
        . ~/naviga.sh
        rm ~/naviga.sh
    fi
}

export function nav

Quick start

Launch naviga with nav (the shell function defined above). Use the arrow keys or h i j k to navigate, Enter to jump into the selected directory, and q to exit.

Uninstallation

$ cargo uninstall naviga
Commit count: 37

cargo fmt