Browse Source

Do not bind keys on dumb terminals.

master
Sorin Ionescu 13 years ago
parent
commit
5e49591fb1
  1. 5
      keyboard.zsh

5
keyboard.zsh

@ -1,3 +1,8 @@ @@ -1,3 +1,8 @@
# Dumb terminals lack support.
if [[ "$TERM" == 'dumb' ]]; then
return
fi
# The default styles.
zstyle ':prompt:' vicmd '<<<' # Indicator to notify of vi command mode.
zstyle ':prompt:' completion "..." # Indicator to notify of generating completion.

Loading…
Cancel
Save