From owner-svn-src-all@FreeBSD.ORG Sat Dec 12 09:53:11 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3EF7106568D for ; Sat, 12 Dec 2009 09:53:11 +0000 (UTC) (envelope-from christoph.mallon@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 04C728FC1E for ; Sat, 12 Dec 2009 09:53:10 +0000 (UTC) Received: (qmail invoked by alias); 12 Dec 2009 09:53:09 -0000 Received: from p54A3AED0.dip.t-dialin.net (EHLO tron.homeunix.org) [84.163.174.208] by mail.gmx.net (mp060) with SMTP; 12 Dec 2009 10:53:09 +0100 X-Authenticated: #1673122 X-Provags-ID: V01U2FsdGVkX1/heTwKaF/hEVeRmfzBTFIHuW4/3+pBSuZ/OJ+xl1 igmzJ+ssfsST+G Message-ID: <4B236804.1030001@gmx.de> Date: Sat, 12 Dec 2009 10:53:08 +0100 From: Christoph Mallon User-Agent: Thunderbird 2.0.0.23 (X11/20091128) MIME-Version: 1.0 To: Doug Barton References: <200912102225.nBAMPrZx076758@svn.freebsd.org> <19235.10488.325168.267306@hergotha.csail.mit.edu> <4B232E39.4000305@FreeBSD.org> <4B236147.7030603@gmx.de> <4B236403.2080408@FreeBSD.org> In-Reply-To: <4B236403.2080408@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.51 Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Hajimu UMEMOTO , Garrett Wollman Subject: Re: svn commit: r200369 - in head: etc share/termcap X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Dec 2009 09:53:11 -0000 Doug Barton wrote: > Christoph Mallon wrote: >> Doug Barton wrote: >>> Garrett Wollman wrote: >>>> <>>> said: >>>> >>>>> It's great, thank!! >>>>> I believe that our xterm entry was modified not to clear screen when >>>>> applications such as less(1) are terminated. Are there any chance to >>>>> back to the behavior? >>>> >>>> >>>> I don't understand why people put up with the unspeakably obnoxious >>>> "alternate screen" behavior. Please don't tell me someone actually >>>> thinks it's *useful*. >>> I actually liked having the remnants of whatever I was looking at in >>> $PAGER left behind on the screen, and would appreciate it if someone >>> could tell me how to restore that locally. >> %echo $LESS >> -X > > Yeah, I should have been more clear. I am aware of that solution for > less, but I also dislike this behavior for vi, etc. Basically, I want > to know what to twiddle to get the old behavior back. No idea for (n)vi, but for vim you can do this: echo "set t_ti=" >> ~/.vimrc echo "set t_te=" >> ~/.vimrc Christoph