From c4e68ccbcb579ff3bd103e31828977eaefd6e454 Mon Sep 17 00:00:00 2001 From: YummyOreo Date: Sun, 26 Mar 2023 12:06:19 -0500 Subject: [PATCH] fixes (#813) --- src/shell/atuin.nu | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/shell/atuin.nu b/src/shell/atuin.nu index f8886fc..5dbb408 100644 --- a/src/shell/atuin.nu +++ b/src/shell/atuin.nu @@ -6,6 +6,9 @@ let ATUIN_KEYBINDING_TOKEN = $"# (random uuid)" let _atuin_pre_execution = {|| let cmd = (commandline) + if ($cmd | is-empty) { + return + } if not ($cmd | str starts-with $ATUIN_KEYBINDING_TOKEN) { let-env ATUIN_HISTORY_ID = (atuin history start -- $cmd) }