about summary refs log tree commit diff
path: root/Functions/Newuser
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2009-08-21 14:34:51 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2009-08-21 14:34:51 +0000
commitc326bf0d30b4e0a062d661b29ef8c1e2962078a8 (patch)
tree7b2423e77489edf9e20c9647421b660423d8e080 /Functions/Newuser
parent58aefcada3e25ea8fe7b8dcbf820354008f7e591 (diff)
downloadzsh-c326bf0d30b4e0a062d661b29ef8c1e2962078a8.tar.gz
zsh-c326bf0d30b4e0a062d661b29ef8c1e2962078a8.tar.xz
zsh-c326bf0d30b4e0a062d661b29ef8c1e2962078a8.zip
27228: clear function for zsh-newuser-install
Diffstat (limited to 'Functions/Newuser')
-rw-r--r--Functions/Newuser/zsh-newuser-install9
1 files changed, 9 insertions, 0 deletions
diff --git a/Functions/Newuser/zsh-newuser-install b/Functions/Newuser/zsh-newuser-install
index 04d1aa9ca..84d68a831 100644
--- a/Functions/Newuser/zsh-newuser-install
+++ b/Functions/Newuser/zsh-newuser-install
@@ -19,6 +19,15 @@ if (( EUID == 0 || UID == 0 )); then
   return 1
 fi
 
+# clear is missing in some Cygwin configurations (lacking ncurses)
+if ! ( clear >/dev/null 2>/dev/null ); then
+  if zmodload zsh/termcap 2>/dev/null; then
+    clear() { echotc cl; }
+  else
+    clear() { print -n "\e[H\e[J"; }
+  fi
+fi
+
 # The directory in which to look for and save .zshrc.
 local zd=${ZDOTDIR:-$HOME}
 # The same directory in a user friendly form, i.e. with ~ replacement.