https://github.com/beh01der/xontrib-dir-picker
Directory picker / navigator for xonsh shell
https://github.com/beh01der/xontrib-dir-picker
xonsh xontrib zoxide
Last synced: about 2 months ago
JSON representation
Directory picker / navigator for xonsh shell
- Host: GitHub
- URL: https://github.com/beh01der/xontrib-dir-picker
- Owner: Beh01der
- License: mit
- Created: 2024-09-22T09:57:08.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-09-23T08:42:51.000Z (7 months ago)
- Last Synced: 2025-02-10T19:19:37.637Z (2 months ago)
- Topics: xonsh, xontrib, zoxide
- Language: Xonsh
- Homepage:
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xontrib-dir-picker
## Description
This module utilizes `zoxide query -i` command for directory selection
## Requirements
You need [zoxide](https://github.com/ajeetdsouza/zoxide) installed on your system. See [install instructions](https://github.com/ajeetdsouza/zoxide#step-1-installing-zoxide) to get it.
## Installation
```shell
# Install the xontrib
xpip install -U xontrib-dir-picker
# or: xpip install -U git+https://github.com/Beh01der/xontrib-dir-picker.git# Load it
xontrib load dir-picker
```## Configuration
Define the key-binding in your `.xonshrc`:
```python
from xonsh.built_ins import XSHXSH.env['zoxide_pick_dir'] = "c-g" # Ctrl+G
```