Browse Source

[Fix #522] Do not load the terminal module in non-graphical terminals

master
Sorin Ionescu 11 years ago
parent
commit
c091f71283
  1. 2
      modules/terminal/init.zsh

2
modules/terminal/init.zsh

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
#
# Return if requirements are not found.
if [[ "$TERM" == 'dumb' ]]; then
if [[ "$TERM" == (dumb|linux|*bsd*) ]]; then
return 1
fi

Loading…
Cancel
Save