Skip to content

Commit

Permalink
Merge pull request #15 from vardargen/patch-1
Browse files Browse the repository at this point in the history
Add zsh separator and clear command to shells.js
  • Loading branch information
daltonmenezes authored Sep 14, 2024
2 parents 90d4e5a + 5716dc4 commit 3f1e4b3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/shells.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"' },
}

0 comments on commit 3f1e4b3

Please sign in to comment.