all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Subject: Re: Changing Color Of Column # In Modeline
Date: Tue, 22 Nov 2005 23:09:02 +0000 (UTC)	[thread overview]
Message-ID: <dm08ee$1j1q$1@agate.berkeley.edu> (raw)
In-Reply-To: 1132680280.003922.155730@g47g2000cwa.googlegroups.com

[A complimentary Cc of this posting was sent to
rgb
<rbielaws@i1.net>], who wrote in article <1132680280.003922.155730@g47g2000cwa.googlegroups.com>:
> > Is that possible?  Does anyone have a code snippet which does that or
> > something similar?
> 
> http://www.emacswiki.org/cgi-bin/wiki/ColumnMarker

This one looks too restrictive.  Some time ago I wrote this:

(defun match-at-column-79 (end)
  (let (done c res)
    (while (and (not done)
		(< (point) end))
      ;;(message "At point=%s, end=%s, col=%s" (point) end (setq c (current-column)))
      (cond				; need to move forward >=1 char
	  ((< 79 (current-column))
	   (forward-line 1))		; will not move at eobp only
	  ((< 79 (move-to-column 80))	; will move >= 0 char; 0 chars at eolp
	   (setq done t res t)
	   (forward-char -1)
	   (re-search-forward "."))
	  ((eobp)
	   (setq done t))
	  (t
	   (forward-line 1))))
    res))

(add-hook 'font-lock-mode-hook
	  (function
	   (lambda ()
	     (font-lock-add-keywords 
	      nil
	      '((match-at-column-79 0 secondary-selection t))
	      'append))))

Hope this helps,
Ilya

  parent reply	other threads:[~2005-11-22 23:09 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-22  1:07 Changing Color Of Column # In Modeline gamename
2005-11-22  6:26 ` M Jared Finder
2005-11-22 17:24 ` rgb
2005-11-22 21:02   ` gamename
2005-11-23  1:21     ` M Jared Finder
2005-11-23 20:32       ` Kevin Rodgers
2005-11-23 21:08         ` Drew Adams
     [not found]         ` <mailman.16497.1132780124.20277.help-gnu-emacs@gnu.org>
2005-11-24  0:20           ` gamename
2005-11-24  6:21             ` Drew Adams
     [not found]             ` <mailman.16559.1132813301.20277.help-gnu-emacs@gnu.org>
2005-11-25 23:03               ` gamename
2005-11-26  0:01                 ` Drew Adams
2005-11-26 18:33               ` gamename
2005-11-26 18:53                 ` Drew Adams
     [not found]                 ` <mailman.16824.1133031197.20277.help-gnu-emacs@gnu.org>
2005-11-27  0:25                   ` gamename
2005-11-22 23:09   ` Ilya Zakharevich [this message]
2005-11-25 17:55     ` rgb
2005-11-25 18:54       ` Drew Adams

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='dm08ee$1j1q$1@agate.berkeley.edu' \
    --to=nospam-abuse@ilyaz.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.