diff options
| author | Alexandre GV. <contact@alexandregv.fr> | 2025-01-07 21:17:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-07 20:17:28 +0000 |
| commit | a1aea1eae58acfc56288bbaeb94c5f405fe1c2a0 (patch) | |
| tree | 7bd9c3a8ebb916dff0e28b0edcf461b7264446a8 /crates | |
| parent | fix(wrapped): fix crash when history is empty (#2508) (diff) | |
| download | atuin-a1aea1eae58acfc56288bbaeb94c5f405fe1c2a0.zip | |
feat(wrapped): add more pkg managers (#2503)
* feat(wrapped): add more pkg managers
* style: fix format (missing comma)
* fix: remove pyenv as it doesn't handle packages
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/atuin/src/command/client/wrapped.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/atuin/src/command/client/wrapped.rs b/crates/atuin/src/command/client/wrapped.rs index 4dbc1cf0..7fad19f5 100644 --- a/crates/atuin/src/command/client/wrapped.rs +++ b/crates/atuin/src/command/client/wrapped.rs @@ -40,13 +40,20 @@ impl WrappedStats { "pip3", "pipenv", "poetry", + "pipx", + "uv", "brew", "apt", "apt-get", "apk", "pacman", + "yay", + "paru", "yum", "dnf", + "dnf5", + "rpm", + "rpm-ostree", "zypper", "pkg", "chocolatey", @@ -55,6 +62,7 @@ impl WrappedStats { "winget", "gem", "bundle", + "shards", "composer", "gradle", "maven", @@ -65,6 +73,10 @@ impl WrappedStats { "mix", "hex", "rebar3", + "nix", + "nix-env", + "cabal", + "opam", ]; let pkg_commands = history |
