Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #98 from caarlos0/fix-tty
Browse files Browse the repository at this point in the history
Fixed some alerts
  • Loading branch information
caarlos0 committed Jun 30, 2015
2 parents 85ecb53 + 5453232 commit f2fd12e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zsh/config.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ setopt RM_STAR_SILENT

zle -N newtab

if [[ ! -z "$+terminfo[smkx]" ]] && [[ ! -z "$+terminfo[rmkx]" ]]; then
# shellcheck disable=SC2004
if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
function zle-line-init() {
echoti smkx
}
Expand Down

0 comments on commit f2fd12e

Please sign in to comment.