An open API service indexing awesome lists of open source software.

https://github.com/cassin01/path-marker

A CLI for book marking paths
https://github.com/cassin01/path-marker

cli rust

Last synced: 5 months ago
JSON representation

A CLI for book marking paths

Awesome Lists containing this project

README

          

# path-marker

## Installation

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

Uninstall

1. uninstall `path-marker`

```zsh
cargo uninstall path-marker
```

2. remove configuration file will be automatically generated on:

- Linux: `~/.config/rcz`
- Windows: `{FOLDERID_RoamingAppData}\rcz`
- Mac OS: `~/Library/Preferences/rs.rcz`

3. remove `~/.cache/path_marker/hist.txt`

## Usage

```sh
path-marker -- mark # marks current path
path-marker -- show # shows all paths that were marked
path-marker -- conf # shows a configuration info.
```

## Example

```zsh
# Changing directory using fuzzy find.
function cdm {
cd `path-marker -- show | peco`
}
alias mp='path-marker -- mark'
# alias ms='path-marker -- show'
```