From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: Narrow cursor at end of line? Date: Mon, 11 Jan 2010 11:46:28 -0500 Message-ID: References: <87eilzvygz.fsf@topper.koldfront.dk> <871vhzqb39.fsf@hubble.informatimago.com> <87ocl3t2fz.fsf@topper.koldfront.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1263232661 24656 80.91.229.12 (11 Jan 2010 17:57:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 11 Jan 2010 17:57:41 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 11 18:57:34 2010 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 1NUOWD-00086t-2h for geh-help-gnu-emacs@m.gmane.org; Mon, 11 Jan 2010 18:57:33 +0100 Original-Received: from localhost ([127.0.0.1]:54101 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NUOWD-00009b-R4 for geh-help-gnu-emacs@m.gmane.org; Mon, 11 Jan 2010 12:57:33 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!news.glorb.com!news2.glorb.com!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post01.iad.highwinds-media.com!newsfe16.iad.POSTED!7564ea0f!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.91 (gnu/linux) Cancel-Lock: sha1:9WOonVeCxRPZbgVuJilfzE84BXg= Original-Lines: 18 Original-X-Complaints-To: abuse@UsenetServer.com Original-NNTP-Posting-Date: Mon, 11 Jan 2010 16:46:28 UTC Original-Xref: news.stanford.edu gnu.emacs.help:176108 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:71174 Archived-At: > (if (eq (point) (line-end-position)) > (setq cursor-type '(bar . 6)) > (setq cursor-type t))) You mean (setq cursor-type (if (eolp) '(bar . 6) t)) > I would need a hook called every time point is moved (or any time it is > moved to/from end of line) or add an advice to something, I guess? Actually, it's only every time the cursor is moved (point can be moved many times internally over the course of a single command). I.e. at every redisplay. There is sadly no hook for that (yet?), but you can use post-command-hook as a good first approximation. Stefan