diff options
| author | Jonas Maier <> | 2026-04-20 10:27:04 +0200 |
|---|---|---|
| committer | Jonas Maier <> | 2026-04-20 10:27:04 +0200 |
| commit | 97a6a281fd9780ecdccfcf30079f339e305fdc78 (patch) | |
| tree | 7a8ef069e742bd36f287bd4b8244d65bb9d2e296 /src/run/mod.rs | |
| parent | 8fa52302ae6d0cb15daff9384f43744d4201d8ee (diff) | |
| download | pish-97a6a281fd9780ecdccfcf30079f339e305fdc78.tar.gz | |
move ansi escape code parsing into own module
Diffstat (limited to 'src/run/mod.rs')
| -rw-r--r-- | src/run/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/run/mod.rs b/src/run/mod.rs index 36cd454..6fe0d45 100644 --- a/src/run/mod.rs +++ b/src/run/mod.rs @@ -539,6 +539,8 @@ const BUILTINS: &[&'static dyn Builtin] = &[ &builtin::completion, &builtin::alias, &builtin::unalias, + #[cfg(debug_assertions)] + &builtin::debug, ]; pub fn builtin_map() -> HashMap<BString, &'static dyn Builtin> { |
