`
- Pause/unpause the game:
-`p`
+``
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/bpytop.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/bpytop.md
index 07599ec3..d9b5cbb8 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/bpytop.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/bpytop.md
@@ -14,15 +14,15 @@
- Toggle minimal mode:
-`m`
+``
- Search for running programs or processes:
-`f`
+``
- Change settings:
-`M`
+``
- Display version:
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/btop.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/btop.md
index 5669d2d6..5333f11d 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/btop.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/btop.md
@@ -23,3 +23,7 @@
- Set the update rate to 500 milliseconds:
`btop --update 500`
+
+- Exit `btop`:
+
+``
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/calibredb.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/calibredb.md
index 0992a4ba..afbe241c 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/calibredb.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/calibredb.md
@@ -22,7 +22,7 @@
- Recursively add all e-books under a directory to the library:
-`calibredb add {{-r|--recurse}} {{path/to/directory}}`
+`calibredb add {{[-r|--recurse]}} {{path/to/directory}}`
- Remove one or more e-books from the library. You need the e-book IDs (see above):
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-build.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-build.md
index b1f65a09..89722c3d 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-build.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-build.md
@@ -5,28 +5,28 @@
- Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
-`cargo build`
+`cargo {{[b|build]}}`
- Build artifacts in release mode, with optimizations:
-`cargo build --release`
+`cargo {{[b|build]}} {{[-r|--release]}}`
- Require that `Cargo.lock` is up to date:
-`cargo build --locked`
+`cargo {{[b|build]}} --locked`
- Build all packages in the workspace:
-`cargo build --workspace`
+`cargo {{[b|build]}} --workspace`
- Build a specific package:
-`cargo build --package {{package}}`
+`cargo {{[b|build]}} {{[-p|--package]}} {{package}}`
- Build only the specified binary:
-`cargo build --bin {{name}}`
+`cargo {{[b|build]}} --bin {{name}}`
- Build only the specified test target:
-`cargo build --test {{testname}}`
+`cargo {{[b|build]}} --test {{test_name}}`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-check.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-check.md
index 09d62b89..d12d00c4 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-check.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-check.md
@@ -5,20 +5,20 @@
- Check the current package:
-`cargo check`
+`cargo {{[c|check]}}`
- Check all tests:
-`cargo check --tests`
+`cargo {{[c|check]}} --tests`
- Check the integration tests in `tests/integration_test1.rs`:
-`cargo check --test {{integration_test1}}`
+`cargo {{[c|check]}} --test {{integration_test1}}`
- Check the current package with the features `feature1` and `feature2`:
-`cargo check --features {{feature1,feature2}}`
+`cargo {{[c|check]}} {{[-F|--features]}} {{feature1,feature2}}`
- Check the current package with default features disabled:
-`cargo check --no-default-features`
+`cargo {{[c|check]}} --no-default-features`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-doc.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-doc.md
index 1ad3e43f..8a603bb3 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-doc.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-doc.md
@@ -5,16 +5,16 @@
- Build the documentation for the current project and all dependencies:
-`cargo doc`
+`cargo {{[d|doc]}}`
- Do not build documentation for dependencies:
-`cargo doc --no-deps`
+`cargo {{[d|doc]}} --no-deps`
- Build and open the documentation in a browser:
-`cargo doc --open`
+`cargo {{[d|doc]}} --open`
- Build and view the documentation of a particular package:
-`cargo doc --open --package {{package}}`
+`cargo {{[d|doc]}} --open {{[-p|--package]}} {{package}}`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-run.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-run.md
index 7605f9d1..6c312a03 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-run.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-run.md
@@ -6,28 +6,28 @@
- Run the default binary target:
-`cargo run`
+`cargo {{[r|run]}}`
- Run the specified binary:
-`cargo run --bin {{name}}`
+`cargo {{[r|run]}} --bin {{name}}`
- Run the specified example:
-`cargo run --example {{name}}`
+`cargo {{[r|run]}} --example {{name}}`
- Activate a space or comma separated list of features:
-`cargo run --features {{feature1 feature2 ...}}`
+`cargo {{[r|run]}} {{[-F|--features]}} "{{feature1 feature2 ...}}"`
- Disable the default features:
-`cargo run --no-default-features`
+`cargo {{[r|run]}} --no-default-features`
- Activate all available features:
-`cargo run --all-features`
+`cargo {{[r|run]}} --all-features`
- Run with the given profile:
-`cargo run --profile {{name}}`
+`cargo {{[r|run]}} --profile {{name}}`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-test.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-test.md
index b243f8d8..9c422c8b 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-test.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo-test.md
@@ -5,24 +5,24 @@
- Only run tests containing a specific string in their names:
-`cargo test {{testname}}`
+`cargo {{[t|test]}} {{test_name}}`
- Set the number of simultaneous running test cases:
-`cargo test -- --test-threads {{count}}`
+`cargo {{[t|test]}} -- --test-threads {{count}}`
- Test artifacts in release mode, with optimizations:
-`cargo test --release`
+`cargo {{[t|test]}} {{[-r|--release]}}`
- Test all packages in the workspace:
-`cargo test --workspace`
+`cargo {{[t|test]}} --workspace`
- Run tests for a specific package:
-`cargo test --package {{package}}`
+`cargo {{[t|test]}} {{[-p|--package]}} {{package}}`
- Run tests without hiding output from test executions:
-`cargo test -- --nocapture`
+`cargo {{[t|test]}} -- --nocapture`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo.md
index 70385175..300e2db0 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cargo.md
@@ -26,12 +26,12 @@
- Build the Rust project in the current directory using the release profile:
-`cargo build --release`
+`cargo {{[b|build]}} {{[-r|--release]}}`
- Build the Rust project in the current directory using the nightly compiler (requires `rustup`):
-`cargo +nightly build`
+`cargo +nightly {{[b|build]}}`
- Build using a specific number of threads (default is the number of logical CPUs):
-`cargo build --jobs {{number_of_threads}}`
+`cargo {{[b|build]}} --jobs {{number_of_threads}}`
diff --git a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cheatshh.md b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cheatshh.md
index 76116274..fc9882f0 100644
--- a/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cheatshh.md
+++ b/Gentoo/gentooamd/home/user/.tldrc/tldr/pages/common/cheatshh.md
@@ -1,7 +1,7 @@
# cheatshh
> CLI cheatsheet with customized descriptions, tldr and groups, to look into for your reference.
-> Press Enter to a command to copy it to your clipboard and exit.
+> Press `` to a command to copy it to your clipboard and exit.
> More information: