From e56e2d1f9206102068c402a0cadbe62284816586 Mon Sep 17 00:00:00 2001 From: Jonas Maier Date: Mon, 4 May 2026 23:28:17 +0200 Subject: completion now should not introduce strings that do not parse as strings --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index a54f4fc..e10a8e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -374,7 +374,10 @@ impl Session { } fn exec_rc_file(se: Arc>) { - let _ = run::source(se, basedir::config_dir().join(".pishrc").as_os_str().as_bytes()); + let _ = run::source( + se, + basedir::config_dir().join(".pishrc").as_os_str().as_bytes(), + ); } fn event_loop() { -- cgit v1.2.3