Skip to content

Commit 78a43bd

Browse files
committed
feat: add Hyperlink::with_label(...)
1 parent 01dac64 commit 78a43bd

20 files changed

Lines changed: 2499 additions & 30 deletions

.direnv/bin/nix-direnv-reload

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
if [[ ! -d "/home/jet/Documents/ratzilla" ]]; then
4+
echo "Cannot find source directory; Did you move it?"
5+
echo "(Looking for "/home/jet/Documents/ratzilla")"
6+
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
7+
exit 1
8+
fi
9+
10+
# rebuild the cache forcefully
11+
_nix_direnv_force_reload=1 direnv exec "/home/jet/Documents/ratzilla" true
12+
13+
# Update the mtime for .envrc.
14+
# This will cause direnv to reload again - but without re-building.
15+
touch "/home/jet/Documents/ratzilla/.envrc"
16+
17+
# Also update the timestamp of whatever profile_rc we have.
18+
# This makes sure that we know we are up to date.
19+
touch -r "/home/jet/Documents/ratzilla/.envrc" "/home/jet/Documents/ratzilla/.direnv"/*.rc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/01x5k4nlxcpyd85nnr0b9gm89rm8ff4x-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/0d3h8gi2q46fb4l563h6pginjw2a90r4-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/4f3q0m4zz7k7si8cga2bwvj3x194zygp-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/lvh1shxv1jhm7iacffl2iliyza2pfmn0-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/s7bvgynzfisna3jdq2cr4jx73xnhxs27-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/yj1wxm9hh8610iyzqnz75kvs6xl8j3my-source
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/9si7pq5zfzmhrqax0fayiwdamnr9yl49-nix-shell-env

.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc

Lines changed: 2196 additions & 0 deletions
Large diffs are not rendered by default.

examples/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
"colors_rgb",
99
"demo",
1010
"demo2",
11+
"hyperlinks",
1112
"minimal",
1213
"pong",
1314
"shared",

0 commit comments

Comments
 (0)