diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-12 01:54:21 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-12 01:54:21 +0200 |
| commit | bbdf38018b47328b5faa2cef635c37095045be72 (patch) | |
| tree | 8983817d547551ae12508a8ae8731b622d990af4 /crates/turtle/src/command/client/init.rs | |
| parent | feat(server): Make user stuff stateless (diff) | |
| download | atuin-bbdf38018b47328b5faa2cef635c37095045be72.zip | |
feat(server): Really make users stateless (with tests)
This commit also remove another load of unneeded features.
Diffstat (limited to 'crates/turtle/src/command/client/init.rs')
| -rw-r--r-- | crates/turtle/src/command/client/init.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/turtle/src/command/client/init.rs b/crates/turtle/src/command/client/init.rs index 0643cb73..0cdcd425 100644 --- a/crates/turtle/src/command/client/init.rs +++ b/crates/turtle/src/command/client/init.rs @@ -89,7 +89,7 @@ $env.config = ( } } - fn static_init(&self, settings: &Settings) { + fn static_init(&self) { match self.shell { Shell::Zsh => { zsh::init_static(self.disable_up_arrow, self.disable_ctrl_r); @@ -119,6 +119,6 @@ $env.config = ( ); } - self.static_init(settings); + self.static_init(); } } |
