Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jnoortheen/xontrib-hist-navigator

Fish-shell like `prevd` and `nextd` for `xonsh` with keyboard shortcuts
https://github.com/jnoortheen/xontrib-hist-navigator

xonsh xontrib

Last synced: 11 days ago
JSON representation

Fish-shell like `prevd` and `nextd` for `xonsh` with keyboard shortcuts

Awesome Lists containing this project

README

        

# xontrib-hist-navigator

Fish-shell like `prevd` and `nextd` for [xonsh](https://github.com/xonsh/xonsh/) with keyboard shortcuts

# Usage

- install using pip
```sh
pip install xontrib-hist-navigator
```

- or xpip (that is installed alongside xonsh)

```sh
xpip install xontrib-hist-navigator
```

- add to list of xontribs loaded.

```sh
xontrib load hist_navigator
```

# Overview

- it keeps track of `cd` usage per session
- Shortcuts

| command | description | shortcut |
| ------- | ------------------------------------------------------------------ | ----------------- |
| nextd | move to previous working directory | Alt + Left Arrow |
| prevd | move to next working directory in the history (if `prevd` is used) | Alt + Right Arrow |
| listd | list cd history | |
| cd .. | move to parent directory | Alt + Up Arrow |

# Release

```sh
semantic-release --patch # or --minor/--major
```