/navita

Navita is a Bash/Zsh utility for rapid directory traversal, employing fuzzy matching, history tracking, and path validation for efficient file system navigation.

Primary LanguageShellApache License 2.0Apache-2.0

Navita: Navigate Smarter, Not Harder

Derived from "navigate" and "ita" (short for "iteration"), suggesting a tool that helps you navigate through iterations of directory visits.

FeaturesDependenciesInstallationEnvironment VariablesKnown CaveatsConcept/MotivationContributing to NavitaLicense

Tired of typing out long, complex directory paths? Navita is here to simplify your command-line experience! The powerful Bash tool uses fuzzy search to get you to your destination in seconds.

Forget about tedious typing. You can instantly find and jump to any directory, no matter how deeply nested. Navita is a great tool for boosting your productivity and saving you valuable time.

navita-demo

Features

Usual Directory Change

Synopsis: cd [string...]

  • Navita will search the history and directly navigate to the highest-ranked matching directory. The current working directory will not be considered in the search.

  • For highest-ranked directory traversal, search strings will be matched using Perl-compatible regular expressions (PCREs) and are compared case-sensitively.

  • Navita has two exceptions when using PCREs, mainly to keep things (almost) compatible with FZF search syntax.

    • The . character will be treated literally.
    • The ! character can be used to exclude matches for a specified search pattern or word.
    # For example, navigate to the highest-ranked directory path 
    # that does not contain the substring 'smartcd' 
    # and ends with the substring '.config'.
    cd \!smartcd .config
    # OR
    cd '!smartcd' .config

Note

Navita will compare the last word of the string argument to the end of the paths in the history to determine the highest-ranked matching directory.

Useful PCRE search syntaxes↴
Pattern Info
a The character a
ab The string ab
a|b a or b
a* 0 or more a's
\ Escapes a special character
* 0 or more
+ 1 or more
? 0 or 1
{2} Exactly 2
{2,5} Between 2 and 5
{2,} 2 or more
[ab-d] One character of: a, b, c, d
[^ab-d] One character except: a, b, c, d
\d One digit
\D One non-digit
\s One whitespace
\S One non-whitespace
\w One word character
\W One non-word character
^ Start of string
$ End of string
\b Word boundary
\B Non-word boundary
[:alnum:] Letters and digits
[:alpha:] Letters
[:digit:] Decimal digits
[:ascii:] Ascii codes 0 - 127
[:blank:] Space or tab only
[:space:] Whitespace
[:lower:] Lowercase letters
[:upper:] Uppercase letters
[:word:] Word characters
  • You can also navigate directories the same way you would with the usual built-in cd command.

Search & Traverse Child Directories

Synopsis: cd (-s | --sub-search) [string...]

Recursively search subdirectories, excluding .git and its subdirectories, and navigate to the selected one.

Search & Traverse Parent Directories

Synopsis: cd (-S | --super-search) [string...]
         cd .. string...

Search directories one level below the parent directories and navigate to the desired one. The current working directory will not be considered in the search.

Search & Traverse History

Synopsis: cd -- [string...]

Search your recently visited directories and select the desired one. The current working directory will not be considered in the search.

Note

Visit a few directories after a clean or initial installation to build a history.

View History

Synopsis: cd (-H | --history) [--by-time | --by-frequency | --by-score]

View Navita's history of visited directories. The history will be displayed in the less pager, or directly to STDOUT if it fits on a single screen. The output will be sorted based on the provided option:

  • --by-time: Sorts the history by access time, with the most recently accessed directories appearing first.
  • --by-freq: Sorts the history by frequency, showing the most frequently accessed directories first.
  • --by-score: Sorts the history by score, with the highest scoring directories at the top. This is the default option.

Toggle Current & Previous Directories

Synopsis: cd -

Switch between your current directory and the previous directory you were in. The previous directory is specific to the current shell.

Clean-up History

Synopsis: cd (-c | --clean) [--invalid-paths | --full-history]

You can choose to either remove invalid paths from the history or clear the entire history. However, Navita will automatically remove non-existent and non-executable directories.

Version Information

Synopsis: cd (-v | --version)

View Navita's version information.

Tab Completion

  • Navita supports Tab completion for its options and directories.
  • For Zsh, to initialize the completion system, the function compinit should be autoloaded, and then run simply as ‘compinit’. Ref: Zsh Completion System - Use of Compinit

Path Exclusion for History

  • Prevent paths that match any regular expression pattern in the $NAVITA_IGNOREFILE file from being added to the history.
  • Navita automatically prevents the .git and $HOME directories from being added to the history by default.

Note

Even if a path was part of the history prior to its inclusion in the $NAVITA_IGNOREFILE using a regular expression pattern, it will still be visible, but Navita will cease to boost its ranking.

Frecency Directory Ranking

The Frecency algorithm ranks directories based on a combination of two factors:

  • frequency (how often a directory is accessed) and,
  • recency (how recently it was accessed).

This ensures that the most relevant directories—those accessed both frequently and recently—are ranked higher, while directories with older access are deprioritized.

How it Works?

$$ \text{Score} = \ln\left(\frac{F \times (T_2-T_1)}{T_2}+1\right) \times e^{\left(\frac{-k \times T_1}{T_2}\right)} $$

where:

  • F is the frequency of access.
  • T1 is the time difference between the most recent access and the current directory.
  • T2 is the maximum time difference allowed (90 days default). Check NAVITA_MAX_AGE environment variable.
  • k controls the rate at which the weight of older accesses decreases. Check NAVITA_DECAY_FACTOR environment variable.
  • The logarithmic scaling reduces the impact of extremely high frequencies, ensuring a more balanced ranking.
  • The exponential decay gradually reduces the importance of older accesses, prioritizing recent activity.

Aging

  • Directory paths are forgotten based on the following two conditions:
    1. Limit the maximum number of entries in the $NAVITA_HISTORYFILE file to 5000.
    2. If a directory path's score falls to 0, an average score will be calculated. Directory paths with scores less than 20% of the average score will be removed.
  • These conditions will be checked once every 24 hours at shell startup.
  • If a directory path is removed due to a score of 0, the remaining directory paths will have their frequencies adjusted according to the formula $\ln(F+1)$, where $F$ is the frequency of the particular directory path.

Additional Info

  • For Navita to follow physical directory structures, use the -P option along with the other options. This will resolve symbolic links and navigate you to the actual physical location on disk. To make Navita always resolve symbolic links, check the NAVITA_FOLLOW_ACTUAL_PATH environment variable.

Note

If this option is used, it should be the very first option given to Navita.

  • Search syntax is same as the FZF search syntax except when searching for Highest-ranked directory. You can type in multiple search terms delimited by spaces. For example, FZF sees ^music .conf3$ sbtrkt !fire as four separate search terms.

    Token Match Type Description
    sbtrkt fuzzy-match Items that include sbtrkt characters in that order
    'wild exact-match (quoted) Items that include wild
    'wild' exact-boundary-match (quoted both ends) Items that include wild at word boundaries
    ^music prefix-exact-match Items that start with music
    .conf3$ suffix-exact-match Items that end with .conf3
    !fire inverse-exact-match Items that do not include fire
    !^music inverse-prefix-exact-match Items that do not start with music
    !.conf3$ inverrse-suffix-exact-match Items that do not end with .conf3

Dependencies

Installation

  1. Download the navita.sh file.
# using wget2
wget2 https://raw.githubusercontent.com/CodesOfRishi/navita/main/navita.sh

# or using curl
curl https://raw.githubusercontent.com/CodesOfRishi/navita/main/navita.sh --output navita.sh
  1. Source the navita.sh file in your .bashrc/.zshrc configuration file.
source "path/to/the/navita.sh"

Environment Variables

Note

If you want to keep your desired values rather than the default ones, make sure to export these environment variables before sourcing the navita.sh file in your .bashrc/.zshrc.

  • NAVITA_DATA_DIR

    • Directory location for Navita's data files.
    • Defaults to $XDG_DATA_HOME/navita
    • If XDG_DATA_HOME is not set, it defaults to ~/.local/share/navita.
  • NAVITA_CONFIG_DIR

    • Directory location for Navita's configuration files.
    • Defaults to $XDG_CONFIG_HOME/navita
    • If XDG_CONFIG_HOME is not set, it defaults to ~/.config/navita.
  • NAVITA_COMMAND

    • Name of the command to use Navita.
    • Defaults to cd.
  • NAVITA_FOLLOW_ACTUAL_PATH

    • Follow symbolic links and resolve them to their actual physical locations before making the directory change.
    • Defaults to n, i.e., not to follow symbolic links.
    • Change it to y or Y to follow symbolic links.
  • NAVITA_RELATIVE_PARENT_PATH

    • It defaults to y i.e., show the resolved parent paths relative to the present working directory in Search & Traverse Parent Directories feature.
    • Change it to n or N to show the parent paths as absolute path.
  • NAVITA_SHOW_AGE

    • It defaults to y, i.e., show an age annotation next to the paths while searching and traversing from history.
    • Change it to n or N, to not show an age annotation beside the paths.
  • NAVITA_FZF_EXACT_MATCH

  • NAVITA_MAX_AGE

    • Specifies maximum retention period for a directory path since last access.
    • Navita determines the age of a directory based on its relative access time to the most recently accessed directory. If the most recent directory was accessed at time $a$ and another directory was accessed at time $(a+x)$, the age of the other directory is $x$ time units.
    • The default value is 90 i.e., 90 days.
  • NAVITA_DECAY_FACTOR

    • The rate at which the score of older accesses decreases. A higher value results in a faster decay rate.
    • It defaults to 10.

Warning

The decay factor should always be positive. Only adjust the decay factor if you are confident in the algorithm's behavior with the new value.

Non-Configurable Environment Variables

  • NAVITA_VERSION

    • Navita's version information.
  • NAVITA_IGNOREFILE

    • The file containing regular expression patterns to ignore matching paths from being added to the history.
    • The path to the file is $NAVITA_CONFIG_DIR/navita-ignore.
  • NAVITA_HISTORYFILE

    • The file containing a history of directory paths visited using Navita, along with their associated metadata like frequency, access time, and score.
    • The path to the file is $NAVITA_DATA_DIR/navita-history.

Known Caveats

Concept/Motivation

  • To address the tedium of the builtin cd command.
  • KISS&E - Keep It Simple, Straightforward & Efficient.
  • No feature bloating.

Contributing to Navita

To review the latest changes that have not yet been included in the latest release, check out the dev branch.

Reporting Issues

If you encounter any bugs or issues while using Navita, please open an issue on the Navita GitHub repository. Provide as much detail as possible, including steps to reproduce the issue and any relevant error messages.

License

This project is licensed under the Apache License 2.0. See the LICENSE for details.