Inkless is a minimalist, high-integrity terminal pager written in Rust. It focuses on modularity, readability, and memory safety, providing a modern alternative to traditional pagers like GNU less.
- Smart Word-Wrapping: Logical line breaks at spaces or hyphens to maintain text legibility.
- Dynamic Margins: Automatic side padding for improved readability on wide displays.
- Regex Search: Pattern-based forward and backward searching with real-time visual highlighting.
- Responsive Resizing: Signal-driven (SIGWINCH), real-time re-layout. Optimized event draining ensures lag-free performance across all hardware tiers.
- Pipe Support: Seamlessly functions as a standard pager (e.g.,
ls | inkl). - Live Follow Mode: Non-blocking background I/O allows real-time viewing of growing files (similar to
tail -f) or slow pipes without freezing the UI. - Robust Error Handling: Structured error propagation with user-friendly status bar reporting; no silent failures or unhandled panics.
- Strict Command Philosophy: A consistent, non-redundant interface following a "One Action, One Command" rule.
Ensure you have the Rust toolchain (2021 edition or later) and Cargo installed.
cargo build --releaseThe binary will be available at ./target/release/inkl.
# View a specific file
inkl filename.txt
# View output from a pipe
ls -R | inkl
# Check version
inkl --v| Key | Action |
|---|---|
j / Down |
Scroll down one line |
k / Up |
Scroll up one line |
d |
Scroll down half a page |
u |
Scroll up half a page |
f / PageDown |
Scroll down one page |
b / PageUp |
Scroll up one page |
g / Home |
Jump to the beginning of the document |
G / End |
Jump to the end of the document |
F |
Toggle Live Follow mode (automatic scrolling to bottom) |
/ |
Search forward for a pattern |
? |
Search backward for a pattern |
n |
Repeat the last search in the same direction |
N |
Repeat the last search in the reverse direction |
:n |
Open the next file in the argument list |
:p |
Open the previous file in the argument list |
:N |
Toggle line number visibility |
:<num> |
Jump to specific line number |
h |
Open help screen |
q |
Exit Inkless |
Esc |
Clear search highlights or return from help |
This project is licensed under the MIT License. See the LICENSE file for details.