diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 21:14:09 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 21:14:09 +0100 |
commit | c0e0dbe9e69852a79ef88effd5a6865e666143ee (patch) | |
tree | 3688648d39e4b72290f165cadcf60f7405a46a46 | |
parent | fix(hm/conf/zsh/command_not_found.sh): Output a status message for shell (diff) | |
download | nixos-config-c0e0dbe9e69852a79ef88effd5a6865e666143ee.tar.gz nixos-config-c0e0dbe9e69852a79ef88effd5a6865e666143ee.zip |
fix(hm/conf/zsh/command_not_found.sh): Add missing space in cmd name
-rw-r--r-- | hm/soispha/conf/zsh/config/command_not_found.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/zsh/config/command_not_found.sh b/hm/soispha/conf/zsh/config/command_not_found.sh index 20e3aa0e..52671c5a 100644 --- a/hm/soispha/conf/zsh/config/command_not_found.sh +++ b/hm/soispha/conf/zsh/config/command_not_found.sh @@ -21,7 +21,7 @@ command_not_found_handle() { case "$len" in 0) - eprintln"$cmd: command not found" + eprintln "$cmd: command not found" ;; 1) # If only one package provides this, then we can invoke it |