From ed2b98dd9a632e95d89bf99dff1f718675b7395e Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 2 Apr 2023 16:42:59 +0200 Subject: [PATCH] lib.rs: group common.rs before other modules, because it exports macros This allows us to keep the next group sorted. --- fish-rust/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/fish-rust/src/lib.rs b/fish-rust/src/lib.rs index 74fd34615..22c9c719a 100644 --- a/fish-rust/src/lib.rs +++ b/fish-rust/src/lib.rs @@ -9,6 +9,7 @@ #[macro_use] mod common; + mod abbrs; mod builtins; mod color;