From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "wlcna" Newsgroups: gmane.emacs.help Subject: Re: Vi-like end of buffer in emacs? Date: Sun, 04 Jan 2009 06:55:12 GMT Organization: EasyNews, UseNet made Easy! Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1231054854 19018 80.91.229.12 (4 Jan 2009 07:40:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 4 Jan 2009 07:40:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jan 04 08:42:05 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LJNcZ-0003s9-7o for geh-help-gnu-emacs@m.gmane.org; Sun, 04 Jan 2009 08:42:03 +0100 Original-Received: from localhost ([127.0.0.1]:43690 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LJNbK-0006Qm-1N for geh-help-gnu-emacs@m.gmane.org; Sun, 04 Jan 2009 02:40:46 -0500 Original-Path: news.stanford.edu!headwall.stanford.edu!news.glorb.com!news-in-01.newsfeed.easynews.com!easynews.com!easynews!easynews-local!fe05.news.easynews.com.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-Lines: 25 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Windows Mail 6.0.6000.16386 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6000.16386 Original-X-Complaints-To: abuse@easynews.com X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly. Original-Xref: news.stanford.edu gnu.emacs.help:165715 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:61049 Archived-At: "Kevin Rodgers" wrote... > All you need is: (setq-default indicate-empty-lines t) > For my customization, I prefer the Emacs 21 empty line glyphs: > (when (fboundp 'define-fringe-bitmap) > (define-fringe-bitmap 'empty-line [0 0 #x3c #x3c #x3c #x3c 0 0]) ; Emacs > 21 > ) > NICER THAN WHAT I HAD! THANKS! It's in my init file. > And less obtrusive color: > > (when (display-color-p) > (let ((bg-mode (frame-parameter (selected-frame) 'background-mode))) > (cond ((eq bg-mode 'light) > (set-face-foreground 'fringe "grey60")) > ((eq bg-mode 'dark) > (set-face-foreground 'fringe "grey40"))))) Looks better, I put that in there too. Nicer. I just wish now it didn't show one two many lines of these marks, and as mentioned, still doesn't have the vim bg color slight adjustment (in gui vim) either, but hey, it's getting there! Thanks!