<?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"
	>
<channel>
	<title>Comments for Dimitar Panayotov shares experience</title>
	<atom:link href="http://pdimitar.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pdimitar.wordpress.com</link>
	<description>Everything which eases programmer's life and satisfies the clients</description>
	<pubDate>Thu, 21 Aug 2008 15:22:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on GNU Emacs: Use TTF font even if it is looks like not installed by Дидо</title>
		<link>http://pdimitar.wordpress.com/2006/11/30/gnu-emacs-use-ttf-font-even-if-it-is-looks-like-not-installed/#comment-731</link>
		<dc:creator>Дидо</dc:creator>
		<pubDate>Mon, 23 Jun 2008 17:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/30/gnu-emacs-use-ttf-font-even-if-it-is-looks-like-not-installed/#comment-731</guid>
		<description>Hi, 10x, it worked just as you had described it. 
I have a very beautifully looking emacs, thanks to you. 
Its readability is now amazing.</description>
		<content:encoded><![CDATA[<p>Hi, 10x, it worked just as you had described it.<br />
I have a very beautifully looking emacs, thanks to you.<br />
Its readability is now amazing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Do not use tab character, use spaces! by Sharing painful experience &#187; Blog Archive &#187; GNU Emacs: Avoid huge indentations in Java</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-do-not-use-tab-character-use-spaces/#comment-92</link>
		<dc:creator>Sharing painful experience &#187; Blog Archive &#187; GNU Emacs: Avoid huge indentations in Java</dc:creator>
		<pubDate>Thu, 05 Apr 2007 07:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-do-not-use-tab-character-use-spaces/#comment-92</guid>
		<description>[...] tabs &#8212; see No tabs [...]</description>
		<content:encoded><![CDATA[<p>[...] tabs &#8212; see No tabs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Transient mark mode (active selection) by Dimitar Panayotov</title>
		<link>http://pdimitar.wordpress.com/2006/11/24/gnu-emacs-showing-currently-selected-region/#comment-36</link>
		<dc:creator>Dimitar Panayotov</dc:creator>
		<pubDate>Mon, 29 Jan 2007 07:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/24/gnu-emacs-showing-currently-selected-region/#comment-36</guid>
		<description>Patricia,

I have tried something like your suggestion some time ago, only to discover that it does not work on Debian 4.0 + KDE 3.5.5. See this post for details: http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/

I have no idea by now whether this will be fixed or not, because I am not sure whether it was the right function I called. However, as you can see in the referenced post, using &lt;code&gt;clipboard-kill-ring-save&lt;/code&gt; solved my problems.

Of course, I appreciate every useful piece of info anyone wants to post here, and I thank you very much. In this case, I never knew how to define keyboard shortcuts in Emacs in more descriptive way rather to type "C-X-something", which actually does not work for some combinations, as far as I tried it.

Thanks and take care.</description>
		<content:encoded><![CDATA[<p>Patricia,</p>
<p>I have tried something like your suggestion some time ago, only to discover that it does not work on Debian 4.0 + KDE 3.5.5. See this post for details: <a href="http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/" rel="nofollow">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/</a></p>
<p>I have no idea by now whether this will be fixed or not, because I am not sure whether it was the right function I called. However, as you can see in the referenced post, using <code>clipboard-kill-ring-save</code> solved my problems.</p>
<p>Of course, I appreciate every useful piece of info anyone wants to post here, and I thank you very much. In this case, I never knew how to define keyboard shortcuts in Emacs in more descriptive way rather to type &#8220;C-X-something&#8221;, which actually does not work for some combinations, as far as I tried it.</p>
<p>Thanks and take care.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Transient mark mode (active selection) by Patricia J. Hawkins</title>
		<link>http://pdimitar.wordpress.com/2006/11/24/gnu-emacs-showing-currently-selected-region/#comment-35</link>
		<dc:creator>Patricia J. Hawkins</dc:creator>
		<pubDate>Mon, 29 Jan 2007 04:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/24/gnu-emacs-showing-currently-selected-region/#comment-35</guid>
		<description>Yes, the biggest annoyance when I screw up my .emacs file is the absence of transient-mark-mode.  And worse than that is the absence of the following little code snippet, which I've had in my .emacs file for donkey's years: 
&lt;code&gt;
(defun copy-region-as-kill-clear-mark (beg end)
"Save the region as if killed, but don't kill it.
If `interprogram-cut-function' is non-nil, also save the text on the global system clipboard
If `transient-mark-mode' is set, deactivate the mark."

  (interactive "r")
  (copy-region-as-kill beg end)
  (deactivate-mark)
  )
(define-key ctl-x-map "=" 'copy-region-as-kill-clear-mark)
&lt;/code&gt;

I think C-x = is bound by default to something which I never use -- check and see with "C-h k C-x ="</description>
		<content:encoded><![CDATA[<p>Yes, the biggest annoyance when I screw up my .emacs file is the absence of transient-mark-mode.  And worse than that is the absence of the following little code snippet, which I&#8217;ve had in my .emacs file for donkey&#8217;s years:<br />
<code><br />
(defun copy-region-as-kill-clear-mark (beg end)<br />
"Save the region as if killed, but don't kill it.<br />
If `interprogram-cut-function' is non-nil, also save the text on the global system clipboard<br />
If `transient-mark-mode' is set, deactivate the mark."</p>
<p>  (interactive "r")<br />
  (copy-region-as-kill beg end)<br />
  (deactivate-mark)<br />
  )<br />
(define-key ctl-x-map "=" 'copy-region-as-kill-clear-mark)<br />
</code></p>
<p>I think C-x = is bound by default to something which I never use &#8212; check and see with &#8220;C-h k C-x =&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Universal way to put text in clipboard by Greg</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-12</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Mon, 04 Dec 2006 23:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-12</guid>
		<description>Thanks so much! This has been bugging me for ages.</description>
		<content:encoded><![CDATA[<p>Thanks so much! This has been bugging me for ages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Universal way to put text in clipboard by Dimitar Panayotov</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-11</link>
		<dc:creator>Dimitar Panayotov</dc:creator>
		<pubDate>Thu, 30 Nov 2006 13:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-11</guid>
		<description>Thank god.

I do not use "man" and "info" often anyway. Although I am a trained cross-platform programmer, I have been using actively (and solely) Debian Etch and KDE for just a week. I catch up with Linux hundreds of times faster than the people around me, but still, Linux is not a small thing. KDE is not easier, too. It just takes some time.

So, on the topic, I use http://delorie.com and http://emacswiki.org most of the time anyway, so I will be untouched by this change.

The license stuff is very tough and important area though. If somebody does not accept Debian's license, this human is either a Microsoft spy, or is just headstrong. :)</description>
		<content:encoded><![CDATA[<p>Thank god.</p>
<p>I do not use &#8220;man&#8221; and &#8220;info&#8221; often anyway. Although I am a trained cross-platform programmer, I have been using actively (and solely) Debian Etch and KDE for just a week. I catch up with Linux hundreds of times faster than the people around me, but still, Linux is not a small thing. KDE is not easier, too. It just takes some time.</p>
<p>So, on the topic, I use <a href="http://delorie.com" rel="nofollow">http://delorie.com</a> and <a href="http://emacswiki.org" rel="nofollow">http://emacswiki.org</a> most of the time anyway, so I will be untouched by this change.</p>
<p>The license stuff is very tough and important area though. If somebody does not accept Debian&#8217;s license, this human is either a Microsoft spy, or is just headstrong. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Universal way to put text in clipboard by Roman Lagunov</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-10</link>
		<dc:creator>Roman Lagunov</dc:creator>
		<pubDate>Thu, 30 Nov 2006 08:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-10</guid>
		<description>@Dimitar:

I think Emacs documentation in gnu.org and emacswiki will be untouched. 

Debian developers complains about Emacs documentation don't satisfied DFSG licence. So it's a debian issue.

PS.: About languages - I can understand your cv page in Bulgarian, but I don't even know Bulgarian :)

I think our two languages are really close to each other.</description>
		<content:encoded><![CDATA[<p>@Dimitar:</p>
<p>I think Emacs documentation in gnu.org and emacswiki will be untouched. </p>
<p>Debian developers complains about Emacs documentation don&#8217;t satisfied DFSG licence. So it&#8217;s a debian issue.</p>
<p>PS.: About languages - I can understand your cv page in Bulgarian, but I don&#8217;t even know Bulgarian <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I think our two languages are really close to each other.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Universal way to put text in clipboard by Dimitar Panayotov</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-9</link>
		<dc:creator>Dimitar Panayotov</dc:creator>
		<pubDate>Thu, 30 Nov 2006 08:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-9</guid>
		<description>I am quite shocked of this, but it actually makes sense -- maintaining documentation of Emacs (I do not know for Gnus) is a gigantic task! It is only natural for them to want money in some near future. What about official document for Emacs, located in gnu.org? Will it be dropped? What about emacswiki.org?

[Russian] -- there is no Russian variant of this, I have been speaking Russian looooooooooong time ago, I still understand almost everything, but I cannot speak it good anymore. :(</description>
		<content:encoded><![CDATA[<p>I am quite shocked of this, but it actually makes sense &#8212; maintaining documentation of Emacs (I do not know for Gnus) is a gigantic task! It is only natural for them to want money in some near future. What about official document for Emacs, located in gnu.org? Will it be dropped? What about emacswiki.org?</p>
<p>[Russian] &#8212; there is no Russian variant of this, I have been speaking Russian looooooooooong time ago, I still understand almost everything, but I cannot speak it good anymore. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: Universal way to put text in clipboard by Roman Lagunov</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-8</link>
		<dc:creator>Roman Lagunov</dc:creator>
		<pubDate>Wed, 29 Nov 2006 16:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-universal-way-to-put-text-in-clipboard/#comment-8</guid>
		<description>@Dimitar:

&lt;blockquote&gt;Yes, I know it is not an easy to read documentation, and I know that we are all sick of loooooong looooong manuals, but what could we do? Read if you want.&lt;/blockquote&gt;

JFY, in Debian Etch Emacs and Gnus documentation will be move in non-free. 
I've recently install Gnus from testing, and it comes without info manual. I download source tarball from gnus.org and manually put info in &lt;code&gt;~/doc/info&lt;/code&gt;

I think, Emacs without documentation is totally useless. I read it everyday, Just like book :)

What a pity.</description>
		<content:encoded><![CDATA[<p>@Dimitar:</p>
<blockquote><p>Yes, I know it is not an easy to read documentation, and I know that we are all sick of loooooong looooong manuals, but what could we do? Read if you want.</p></blockquote>
<p>JFY, in Debian Etch Emacs and Gnus documentation will be move in non-free.<br />
I&#8217;ve recently install Gnus from testing, and it comes without info manual. I download source tarball from gnus.org and manually put info in <code>~/doc/info</code></p>
<p>I think, Emacs without documentation is totally useless. I read it everyday, Just like book <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What a pity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GNU Emacs: nXML mode and code pages by Dimitar Panayotov</title>
		<link>http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-nxml-mode-and-code-pages/#comment-7</link>
		<dc:creator>Dimitar Panayotov</dc:creator>
		<pubDate>Wed, 29 Nov 2006 15:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://pdimitar.wordpress.com/2006/11/29/gnu-emacs-nxml-mode-and-code-pages/#comment-7</guid>
		<description>---------
[English]

Roman,

I have studied this issue some time ago; I remember a lot of people have tried to use `nXML + mule-ucs'. I cannot remember everything right now, but the conclusion simply was:

"nXML does not work with mule-ucs."

I personally use leim. I have never tried `mule-ucs' and I really cannot tell the difference, but it works well enough for me.

I am not 100% sure that this cannot be done, it's just that I have never tried to do this.

---------
[Russian]

Роман, я очитал статии твоим проблема и я увидел что некакие Эмакс юзери сказали: nXML не работает совместно с mule-ucs. У меня `leim' и для мне это хорошо, но я не могу сказать какая чем разница помежду `mule-ucs' и `leim'.

Я не очень много убеден, что это невозможно, но я никогда пытался сделать эта операция. :)</description>
		<content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;<br />
[English]</p>
<p>Roman,</p>
<p>I have studied this issue some time ago; I remember a lot of people have tried to use `nXML + mule-ucs&#8217;. I cannot remember everything right now, but the conclusion simply was:</p>
<p>&#8220;nXML does not work with mule-ucs.&#8221;</p>
<p>I personally use leim. I have never tried `mule-ucs&#8217; and I really cannot tell the difference, but it works well enough for me.</p>
<p>I am not 100% sure that this cannot be done, it&#8217;s just that I have never tried to do this.</p>
<p>&#8212;&#8212;&#8212;<br />
[Russian]</p>
<p>Роман, я очитал статии твоим проблема и я увидел что некакие Эмакс юзери сказали: nXML не работает совместно с mule-ucs. У меня `leim&#8217; и для мне это хорошо, но я не могу сказать какая чем разница помежду `mule-ucs&#8217; и `leim&#8217;.</p>
<p>Я не очень много убеден, что это невозможно, но я никогда пытался сделать эта операция. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
