From 755bd340909eb257053d1a95832cb45bb7d93eb8 Mon Sep 17 00:00:00 2001 From: Lucas Trzesniewski Date: Mon, 20 Oct 2025 20:27:59 +0200 Subject: feat: add import from PowerShell history (#2864) This adds an `atuin import powershell` command. Of course, it is related to #2543 but I'm submitting it as a separate PR since the code is self-contained and simple enough, and the feature could be useful on its own. /cc @ajn142 who [requested it](https://github.com/atuinsh/atuin/issues/84#issuecomment-3091692807). ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing --- crates/atuin-client/src/import/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/atuin-client/src/import/mod.rs') diff --git a/crates/atuin-client/src/import/mod.rs b/crates/atuin-client/src/import/mod.rs index 1c72da3b..4a1c6af6 100644 --- a/crates/atuin-client/src/import/mod.rs +++ b/crates/atuin-client/src/import/mod.rs @@ -12,6 +12,7 @@ pub mod bash; pub mod fish; pub mod nu; pub mod nu_histdb; +pub mod powershell; pub mod replxx; pub mod resh; pub mod xonsh; -- cgit v1.3.1