<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Customize face at point in Emacs</title>
	<atom:link href="http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/</link>
	<description>Random and probably boring stuff.</description>
	<lastBuildDate>Tue, 24 Jan 2012 23:53:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: chmouel</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-4148</link>
		<dc:creator>chmouel</dc:creator>
		<pubDate>Thu, 14 Jan 2010 10:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-4148</guid>
		<description>Hey, 

I am using Inconsolata-12 provided &lt;a href=&quot;http://www.levien.com/type/myfonts/inconsolata.html&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;  this is my frame configuration by the way :

&lt;code&gt;(setq default-frame-alist &#039;((font-backend . &quot;xft&quot;)
                            (font . &quot;Inconsolata-12&quot;)
                            (vertical-scroll-bars)
                            (left-fringe . -1)
                            (right-fringe . -1)
                            (menu-bar-lines . 0)
                            (tool-bar-lines . 0)
                            ))
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hey, </p>
<p>I am using Inconsolata-12 provided <a href="http://www.levien.com/type/myfonts/inconsolata.html" rel="nofollow">here</a>  this is my frame configuration by the way :</p>
<p><code>(setq default-frame-alist '((font-backend . "xft")<br />
                            (font . "Inconsolata-12")<br />
                            (vertical-scroll-bars)<br />
                            (left-fringe . -1)<br />
                            (right-fringe . -1)<br />
                            (menu-bar-lines . 0)<br />
                            (tool-bar-lines . 0)<br />
                            ))<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elflord</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-4146</link>
		<dc:creator>elflord</dc:creator>
		<pubDate>Thu, 14 Jan 2010 05:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-4146</guid>
		<description>Hello! What font and emacs theme you are using in that screenshot?
Thanks for the answer in advance.</description>
		<content:encoded><![CDATA[<p>Hello! What font and emacs theme you are using in that screenshot?<br />
Thanks for the answer in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Andrus</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-4103</link>
		<dc:creator>Ivan Andrus</dc:creator>
		<pubDate>Sat, 09 Jan 2010 21:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-4103</guid>
		<description>What exactly do you mean by &lt;code&gt;show-face-mode&lt;/code&gt;?  Something like this?

&lt;code&gt;
;; Add (show-face-mode (&quot; `&quot; *show-face-mode-cur-face* &quot;`&quot;)) to mode-line-format
(defvar *show-face-mode-cur-face* nil)

(defun update-current-face ()
  (setq *show-face-mode-cur-face*
        (and (get-char-property (point) &#039;face)
             (symbol-name (get-char-property (point) &#039;face)))))

(defvar show-face-mode) ;; silence the byte compiler
(define-minor-mode show-face-mode
  &quot;Just puts face info in the mode-line&quot;
  nil &quot;&quot; nil :global t
  ;; called every time it turns on or off, after toggling the mode
  (if show-face-mode
      (add-hook &#039;post-command-hook (function update-current-face))
    (remove-hook &#039;post-command-hook (function update-current-face))))
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>What exactly do you mean by <code>show-face-mode</code>?  Something like this?</p>
<p><code><br />
;; Add (show-face-mode (" `" *show-face-mode-cur-face* "`")) to mode-line-format<br />
(defvar *show-face-mode-cur-face* nil)</p>
<p>(defun update-current-face ()<br />
  (setq *show-face-mode-cur-face*<br />
        (and (get-char-property (point) 'face)<br />
             (symbol-name (get-char-property (point) 'face)))))</p>
<p>(defvar show-face-mode) ;; silence the byte compiler<br />
(define-minor-mode show-face-mode<br />
  "Just puts face info in the mode-line"<br />
  nil "" nil :global t<br />
  ;; called every time it turns on or off, after toggling the mode<br />
  (if show-face-mode<br />
      (add-hook 'post-command-hook (function update-current-face))<br />
    (remove-hook 'post-command-hook (function update-current-face))))<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Links 23/12/2009: OLPC XO 3.0 Concept Surfaces &#124; Boycott Novell</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-3993</link>
		<dc:creator>Links 23/12/2009: OLPC XO 3.0 Concept Surfaces &#124; Boycott Novell</dc:creator>
		<pubDate>Wed, 23 Dec 2009 18:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-3993</guid>
		<description>[...] Customize face at point in Emacs [...]</description>
		<content:encoded><![CDATA[<p>[...] Customize face at point in Emacs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: piyo</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-3989</link>
		<dc:creator>piyo</dc:creator>
		<pubDate>Wed, 23 Dec 2009 14:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-3989</guid>
		<description>This feature seems to be in 22.3.

Also another way I figure this out is use what-cursor-position, bound to C-x =. It is necessary to prefix this command with a C-u argument to get the extra information. The latter includes what faces are used on that character.</description>
		<content:encoded><![CDATA[<p>This feature seems to be in 22.3.</p>
<p>Also another way I figure this out is use what-cursor-position, bound to C-x =. It is necessary to prefix this command with a C-u argument to get the extra information. The latter includes what faces are used on that character.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chmouel</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-3987</link>
		<dc:creator>chmouel</dc:creator>
		<pubDate>Tue, 22 Dec 2009 23:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-3987</guid>
		<description>@anon it could be yes been there since a long time, I am surprise  I just see that since I have done that customize-face list-face-display for a long time and I haven&#039;t see that feature.

@matt_harison yeah show face mode would actually awesome for customizing things.... usually when you do M-x customize mode-name author of the mode would list all the faces in its own category but a dynamic thing would be way better.</description>
		<content:encoded><![CDATA[<p>@anon it could be yes been there since a long time, I am surprise  I just see that since I have done that customize-face list-face-display for a long time and I haven&#8217;t see that feature.</p>
<p>@matt_harison yeah show face mode would actually awesome for customizing things&#8230;. usually when you do M-x customize mode-name author of the mode would list all the faces in its own category but a dynamic thing would be way better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-3986</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-3986</guid>
		<description>either i&#039;m misreading what you mean or you&#039;re wrong and that has been there since at least emacs22</description>
		<content:encoded><![CDATA[<p>either i&#8217;m misreading what you mean or you&#8217;re wrong and that has been there since at least emacs22</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt harrison</title>
		<link>http://blog.chmouel.com/2009/12/22/customize-face-at-point-in-emacs/comment-page-1/#comment-3985</link>
		<dc:creator>matt harrison</dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.chmouel.com/?p=269#comment-3985</guid>
		<description>This seems like it&#039;s a halfway solution.  It&#039;s definitely an improvement over list-faces-display, but I guess I would prefer a show-face-mode.  Wouldn&#039;t that be easier those of us tweaking our color theme every time a new mode has it&#039;s own colors?</description>
		<content:encoded><![CDATA[<p>This seems like it&#8217;s a halfway solution.  It&#8217;s definitely an improvement over list-faces-display, but I guess I would prefer a show-face-mode.  Wouldn&#8217;t that be easier those of us tweaking our color theme every time a new mode has it&#8217;s own colors?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

