Interactive ls command made in rust
🌟 Navigate between folders/files using arrow keys
🌟 Browse folders / Open files with native apps using Enter
🌟 Open folder in terminal (CD to folder) using Shift+Enter or Alt+Enter
🌟 Open folder in file manager using Ctrl+Enter
🌟 Type anything to filter current folder content using fuzzy search
🌟 Top button (📁 ..) opens the parent directory (LeftArrow can also be used when fuzzy text field is empty)
🌟 Press Esc to exit
on Linux/Mac Shift+Enter or Ctrl+Enter might not work
-
Download zip package from releases page
-
Extract its content into a folder in PATH (guide)
-
Follow shell specific instructions:
Bash (Linux/Mac) or Zsh
-
Copy the
lsifunction from scripts/lsi.sh to your~/.bashrcor~/.zshrcfile:Lines 3 to 8 in f1cd2db
Batch (Windows CMD)
-
Copy scripts/lsi.bat into a folder that is in your
%PATH%environment variablels-interactive/scripts/lsi.bat
Lines 3 to 5 in f1cd2db
you can open you environment variables settings using the command below: (or by searching for
envin the start menu)rundll32.exe sysdm.cpl,EditEnvironmentVariables
Fish Shell
-
Copy scripts/lsi.fish into
~/.config/fish/functions/OR copy the function inside into your
~/.config/fish/config.fishfilels-interactive/scripts/lsi.fish
Lines 7 to 13 in f1cd2db
Powershell
-
Copy the
lsifunction from scripts/lsi.ps1 to yourMicrosoft.PowerShell_profile.ps1ls-interactive/scripts/lsi.ps1
Lines 7 to 10 in f1cd2db
you can open your profile using one of the following commands:
notepad $profile
gedit $profile
Nushell
-
Copy the
lsifunction from scripts/lsi.nu to yourenv.nuLines 4 to 10 in f6d2fd2
you can open your environment file using the following command:
config env
lsior
lsi some_relative_path(Releases are automatically built by github actions)
-
install
rust -
clone/download the repo
-
run in project directory:
cargo run: to run in dev modecargo build --release: to build locally,- executable will be in
/target/releaseand namedls_interactive - launch script will be in the
/scriptsdirectory
- executable will be in
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Before submitting a Pull Request, verify your changes with all following commands:
cargo checkcargo fmt --all --checkcargo clippy --all-targets --all-features -- -W clippy::pedantic -W clippy::cargo -W clippy::nurseryGive a ⭐ if this package helped you!
MIT. See LICENSE file for details.
