diff options
| author | noyez <noyez@ithryn.net> | 2022-05-20 02:36:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-20 07:36:53 +0100 |
| commit | e5df809dd29b0fc73cb39b9debd3180b174e6bf5 (patch) | |
| tree | d56885cb7bf11fcede0fcb3278ed5a2780d51f3b /atuin-client/src/import/mod.rs | |
| parent | Improve default fish keybindings (#420) (diff) | |
| download | atuin-e5df809dd29b0fc73cb39b9debd3180b174e6bf5.zip | |
Noyez zsh histdb import (#393)
* Attempting to implement zsh-histdb import
Import compiles passes tests, but doesn't run b/c of async runtime.
zsh-histdb uses sqlite, and sqlx-rs is async, but import code is sync.
* More working on importing histdb
* Rewriting tests and using `Vec<u8>` instead of `String`
- Rewriting tests to eliminate depencency on local file system
- Using `Vec<u8>` for command strings instead of `String` to eliminate
the utf8 errors i was seeing previously. Seems to be working.
* Running fmt
Co-authored-by: Bradley Noyes <b@noyes.dev>
Diffstat (limited to 'atuin-client/src/import/mod.rs')
| -rw-r--r-- | atuin-client/src/import/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin-client/src/import/mod.rs b/atuin-client/src/import/mod.rs index 07178d17..65c4f41d 100644 --- a/atuin-client/src/import/mod.rs +++ b/atuin-client/src/import/mod.rs @@ -10,6 +10,7 @@ pub mod bash; pub mod fish; pub mod resh; pub mod zsh; +pub mod zsh_histdb; #[async_trait] pub trait Importer: Sized { |
