From 68875e9c365185e391895993239ed11582320fca Mon Sep 17 00:00:00 2001 From: Kyler Clay Date: Wed, 25 Feb 2026 20:04:56 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3f8e84b..0bb44e7 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ A Unix shell written in Rust. The name is a nod to both `sh` and `ed`. It's a shell with a heavy emphasis on smooth line editing. +shed + ## Features ### Line Editor From 5c967cc7a32a0d76245409da9de81bafed6b6f2c Mon Sep 17 00:00:00 2001 From: Kyler Clay Date: Wed, 25 Feb 2026 20:05:54 -0500 Subject: [PATCH 2/3] Enhance Visual mode description in README Updated Visual mode description to include visual line selection. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bb44e7..3280abd 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A Unix shell written in Rust. The name is a nod to both `sh` and `ed`. It's a sh - **Normal mode** - motions (`w`, `b`, `e`, `f`, `t`, `%`, `0`, `$`, etc.), verbs (`d`, `c`, `y`, `p`, `r`, `x`, `~`, etc.), text objects (`iw`, `aw`, `i"`, `a{`, `is`, etc.), registers, `.` repeat, `;`/`,` repeat, and counts - **Insert mode** - insert, append, replace, with Ctrl+W word deletion and undo/redo -- **Visual mode** - character-wise selection with operator support +- **Visual mode** - character-wise and visual line selection with operator support - **Real-time syntax highlighting** - commands, keywords, strings, variables, redirections, and operators are colored as you type - **Tab completion** - context-aware completion for commands, file paths, and variables From 331b1e005a01215ac21ddf9a2b8f59587f199980 Mon Sep 17 00:00:00 2001 From: Kyler Clay Date: Wed, 25 Feb 2026 21:19:04 -0500 Subject: [PATCH 3/3] UpdateREADME.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3280abd..23f8f8e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # shed -A Unix shell written in Rust. The name is a nod to both `sh` and `ed`. It's a shell with a heavy emphasis on smooth line editing. +A Linux shell written in Rust. The name is a nod to both `sh` and `ed`. It's a shell with a heavy emphasis on smooth line editing. shed