kn /n/

Github Actions badge

kn is an alternative to cd. It lets you navigate quickly by typing abbreviations. It doesn't track frecency or any other statistics - it's dumb, predictable and good at one thing.

WARNING: This project is in its alpha stage.

demo

Watch demo.

Installation

  1. git clone https://github.com/micouy/kn.git
  2. cd kn
  3. Put the binary in a folder that is in PATH:

    cargo build -Z unstable-options --out-dir DIR_IN_PATH --release

    Or just build it and copy the binary to that dir:

    cargo build --release cp target/release/_kn DIR_IN_PATH

  4. Add this line to the config of your shell (notice the underscore in _kn):

  5. Reload your config or launch a new shell instance to use kn.

Usage

test-dir ├── boo │ └── buzz ├── buzz ├── bazz └── foo ├── bizz └── bazz

``` $ kn # enter ~ $ kn ~ # also enter ~

$ kn - # go back to previous location

$ kn tes/fo/iz # enter test-dir/foo/bizz

$ kn tes/baz # enter test-dir/bazz

$ kn tes/-/baz # enter test-dir/foo/bazz

$ kn -/bo/uzz # enter test-dir/boo/buzz

```

kn ~, kn .., kn ., kn / work just like with cd.

kn a/-/b means "Go to b in any dir which is in a.". kn -/a means "Go to a in any dir which is in current dir.". kn /-/a means "Go to a in any dir which is in root.".

Details about the ordering of found paths If kn finds many matching paths with the same number of components it orders them in such a way:

  1. Complete matches before partial matches. All matches by wildcards are equal. There can't be a wildcard and a complete/partial match at the same depth.
  2. Partial matches with smaller Levenshtein distance first.
  3. The first component (the component at the smallest depth) is the most significant and so on.

Running kn a/-/b on paths below returns them in the following order:

apple/x/b Partial(4) / Wildcard / Complete 1. = = != apple/y/bee Partial(4) / Wildcard / Partial(_) 2.

apple/x/bo Partial(4) / Wildcard / Partial(1) 1. = = != apple/y/bee Partial(4) / Wildcard / Partial(2) 2.

a/x/bo Complete / Wildcard / Partial(1) 1. != - - apple/y/b Partial(4) / Wildcard / Complete 2.

Help wanted

In this project I have entered a lot of areas I have little knowledge about. Contributions and criticism are very welcome. Here are some things you can do:

TODO

Search engine

CLI experience