From 5716dc4bef64b0f581cb54c2728c0d96f7e87912 Mon Sep 17 00:00:00 2001 From: vardargen <181253705+vardargen@users.noreply.github.com> Date: Sat, 14 Sep 2024 02:04:39 +0100 Subject: [PATCH] Add zsh separator and clear command to shells.js --- src/shells.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shells.js b/src/shells.js index a54ea4c..5dce23c 100644 --- a/src/shells.js +++ b/src/shells.js @@ -4,5 +4,6 @@ exports.KNOWN_SHELLS = { cmd: { separator: ' & ', clearCommand: 'cls' }, fish: { separator: ' & ', clearCommand: 'clear' }, nu: { separator: ' && ', clearCommand: 'printf "\\\\033[H"' }, + zsh: { separator: ' && ', clearCommand: 'clear' }, fallback: { separator: ' && ', clearCommand: 'printf "\\033[H"' }, }