unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Display "dash" as "minus" in programming language mode?
Date: Wed, 08 Jul 2009 19:23:58 -0600	[thread overview]
Message-ID: <h33grg$dum$1@ger.gmane.org> (raw)
In-Reply-To: <874otm28kw.fsf@physik.rwth-aachen.de>

Torsten Bronger wrote:
> Hallöchen!
> 
> I have an arguably odd question: Is it possible to tell Emacs to
> display every "dash" character as an "en-dash" character?
> 
> The reason is that I use the DejaVu fonts which have a particularly
> short dash.  In source code, this is unfortunate.  Is is possible to
> use e.g. font-lock-mode to substitute "en-dash" or "minus" for every
> "dash"?

How about:

(aset (or standard-display-table
	  (setq standard-display-table (make-display-table)))
       ?- [?\u2013])

Or for just programming language mode foo:

(add-hook 'foo-mode-hook
	  (lambda ()
	    (aset (or buffer-display-table
		      (setq buffer-display-table (make-display-table)))
		  ?- [?\u2013])))

-- 
Kevin Rodgers
Denver, Colorado, USA





      parent reply	other threads:[~2009-07-09  1:23 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-08 21:01 Display "dash" as "minus" in programming language mode? Torsten Bronger
2009-07-08 21:39 ` Pascal J. Bourguignon
2009-07-09  7:56   ` Torsten Bronger
2009-07-09  9:00     ` Miles Bader
2009-07-09  9:15       ` Torsten Bronger
2009-07-09 11:04         ` Miles Bader
2009-07-10 14:15     ` Torsten Bronger
2009-07-09  1:23 ` Kevin Rodgers [this message]

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to='h33grg$dum$1@ger.gmane.org' \
    --to=kevin.d.rodgers@gmail.com \
    --cc=help-gnu-emacs@gnu.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).