aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/import/mod.rs
diff options
context:
space:
mode:
authorLucas Trzesniewski <lucas.trzesniewski@gmail.com>2025-10-20 20:27:59 +0200
committerGitHub <noreply@github.com>2025-10-20 11:27:59 -0700
commit755bd340909eb257053d1a95832cb45bb7d93eb8 (patch)
tree6dd9e1d61979461b8a404d12316febb3fab9b913 /crates/atuin-client/src/import/mod.rs
parentfeat: add commit to displayed version info (#2922) (diff)
downloadatuin-755bd340909eb257053d1a95832cb45bb7d93eb8.zip
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
Diffstat (limited to 'crates/atuin-client/src/import/mod.rs')
-rw-r--r--crates/atuin-client/src/import/mod.rs1
1 files changed, 1 insertions, 0 deletions
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;