emacs-workspace-hud
A floating workspace status HUD for Emacs, showing Git, LSP, and diagnostic state in a WebAssembly-powered egui card.
File Explorer
- screenshot.png
- ARCHITECTURE.md
- README.md
- WORKSPACE-HUD.md
- workspace-hud.el
- workspace-hud-tests.el
- lib.rs
- Cargo.toml
- index.html
- .gitignore
- .gitmodules
- emacs-egui
- justfile
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
clock
View Details ▼
clock
Set the system clock.
clock set {{23}}:{{59}}:{{59}} {{31}} {{april}} {{2000}}
Enter privileged execution mode:
clock active prefer
Auto negotiate with the far end of the link, defaulting to active-clock:
clock passive prefer
Auto negotiate with the far end of the link, defaulting to passive-clock:
dot
View Details ▼
dot
Render an image of a `linear directed` network graph from a `graphviz` file.
Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`.
dot -T {{png}} -O {{path/to/input.gv}}
Render a PNG image with a filename based on the input filename and output format (uppercase -O):
dot -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}
Render a SVG image with the specified output filename (lowercase -o):
dot -T {{format}} -O {{path/to/input.gv}}
Render the output in PS, PDF, SVG, Fig, PNG, GIF, JPEG, JSON, or DOT format:
emacs
View Details ▼
emacs
The extensible, customizable, self-documenting, real-time display editor.
See also: `emacsclient`.
emacs {{path/to/file}}
Start Emacs and open a file:
emacs +{{line_number}} {{path/to/file}}
Open a file at a specified line number:
emacs --script {{path/to/file.el}}
Run an Emacs Lisp file as a script:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
just
View Details ▼
just
Save and run project-specific commands.
just {{recipe}}
Run a recipe specified in the justfile:
just
Start a REPL (interactive shell):
just --init
Initialize new justfile in project root:
rev
View Details ▼
rev
Reverse a line of text or a file.
rev
Reverse text typed into terminal:
rev {{path/to/file}}
Reverse each line in a file to `stdout`:
echo "hello" | rev
Reverse the text string "hello":
