path-marker 0.2.0

A tool to search files
# path-marker

## Installation

```sh
cargo install path-maker
```

## Usage

```sh
path-marker -- mark # marks current path
path-marker -- show # shows all paths that were marked
```

```zsh
# Changing directory using fuzzy find.
function cdm {
  cd `path-marker -- show | peco`
}
```