5 releases

0.3.3 Nov 2, 2022
0.3.0 Aug 4, 2022
0.2.32 Dec 18, 2021
0.2.31 Nov 28, 2021
0.1.1 Oct 28, 2020

#89 in Text editors

Download history 6/week @ 2024-02-23 6/week @ 2024-03-01 9/week @ 2024-03-08 262/week @ 2024-03-29

271 downloads per month

GPL-3.0 license

215KB
5.5K SLoC

Sbyte

An in-console byte editor. Work in progress, but fairly stable for basic work.
Crates.io Crates.io GitHub

About

The environment was designed to feel and work as much like VIM as is reasonable for a byte editor. (hjkl directional controls, numerical register, a command line with its own pseudo-language as well as modes [visual, insert, append, replace])

Installation & Usage

From crates.io

cargo install sbyte
sbyte <filename>

From source:

cargo install --git https://burnsomni.net/git/sbyte
sbyte <filename>

See sbyterc for basic controls.

Hex, Binary & Decimal Views

Sbyte may be a hex editor, but it's also a bin editor and dec editor. Switch between them on-the-fly

Regex modifications

Regex is supported in searches, however some modifications have been made to make it more useful in the context of all bytes rather than just the human-readable ones.

Byte Wildcarding

Use a . to indicate a wildcard within a byte.

Examples

This will find all bytes from \x90 to \x9F:

find \x9.

This can also be done in binary:

find \b1001....

and doesn't need to be sequential

find \b100100.0

will match \x90 & \x92

Dependencies

~4–51MB
~722K SLoC