From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Xah Newsgroups: gmane.emacs.help Subject: Re: Browsing Unicode Symbols Date: Wed, 9 Jul 2008 00:43:55 -0700 (PDT) Organization: http://groups.google.com Message-ID: <69cea3ed-fc4e-4019-b3d4-95b7f343b107@z66g2000hsc.googlegroups.com> References: <1a37f6d3-1121-45bf-808a-38590605c4cb@f36g2000hsa.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1215592932 26898 80.91.229.12 (9 Jul 2008 08:42:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Jul 2008 08:42:12 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 09 10:42:59 2008 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 1KGVGB-0007pH-VF for geh-help-gnu-emacs@m.gmane.org; Wed, 09 Jul 2008 10:42:48 +0200 Original-Received: from localhost ([127.0.0.1]:54970 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KGVFK-0006ct-Bu for geh-help-gnu-emacs@m.gmane.org; Wed, 09 Jul 2008 04:41:54 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!z66g2000hsc.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 35 Original-NNTP-Posting-Host: 24.6.97.120 Original-X-Trace: posting.google.com 1215589435 2671 127.0.0.1 (9 Jul 2008 07:43:55 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 9 Jul 2008 07:43:55 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: z66g2000hsc.googlegroups.com; posting-host=24.6.97.120; posting-account=bRPKjQoAAACxZsR8_VPXCX27T2YcsyMA User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.22, gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:159981 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:55335 Archived-At: On Jul 8, 5:58 am, Nordl=C3=B6w wrote: > Is there a way to visually browse/explore the Unicode symbols > available in GNU Emacs (CVS) either globally or locally defined by a > specific/current font? Compare list-colors-display(). I'm not aware of one... (not that i would know...) However, you could easly create your own by several means. Here's few possibilities. =E2=80=A2 Just create a file and insert unicode you use often. Then, you ca= n easily define a command and bind it to f6, so pressing a buttons shows it. For some symbols i use, i have http://xahlee.org/emacs/unicode.txt http://xahlee.org/Periodic_dosage_dir/t1/20040505_unicode.html ; open my unicode template with F8 key (global-set-key (kbd "") (lambda () (interactive) (find-file "~/my_unicode_template.txt"))) =E2=80=A2 here's a code that insert unicode chars 32 to 128 (let ((x 32)) (while (/=3D x 128) (ucs-insert x) (setq x (+ x 1)))) Xah =E2=88=91 http://xahlee.org/ =E2=98=84