diff --git a/README.md b/README.md
index a64b88075..589b59164 100644
--- a/README.md
+++ b/README.md
@@ -11,11 +11,12 @@ Soft Serve
A tasty, self-hostable Git server for the command line. π¦
-
+
* Configure with `git`
* Create repos on demand with `git push`
* Browse repos, files and commits with an SSH-accessible TUI
+* TUI mouse support
* Print files over SSH with or without syntax highlighting and line numbers
* Easy access control
- Allow/disallow anonymous access
@@ -186,7 +187,7 @@ git push soft main
## The Soft Serve TUI
-
+
Soft Serve serves a TUI over SSH for browsing repos, viewing files and commits,
and grabbing clone commands:
@@ -201,13 +202,9 @@ It's also possible to βlinkβ to a specific repo:
ssh localhost -t -p 23231 REPO
```
-You can use the `tab` key to move between the repo menu and a particular repo.
-When a repo is highlighted you can use the following keys for navigation:
+You can copy text to your clipboard over SSH. For instance, you can press c on the highlighted repo in the menu to copy the clone command [^osc52].
-* `R` β View the project's README file
-* `F` β Navigate and view all of the files in the project
-* `C` β View the commit log for the repo
-* `B` β View branches and tags for the repo
+[^osc52]: Copying over SSH depends on your terminal support of OSC52.
## The Soft Serve SSH CLI
@@ -244,14 +241,14 @@ ssh -p 23231 localhost ls soft-serve
From there, you can print individual files using the `cat` command:
```sh
-ssh -p 23231 localhost cat soft-serve/cmd/soft/main.go
+ssh -p 23231 localhost cat soft-serve/cmd/soft/root.go
```
You can add the `-c` flag to enable syntax coloring and `-l` to print line
numbers:
```sh
-ssh -p 23231 localhost cat soft-serve/cmd/soft/main.go -c -l
+ssh -p 23231 localhost cat soft-serve/cmd/soft/root.go -c -l
```
You can also use the `git` command to perform Git operations on a repo such as changing the default branch name for instance: