<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Glotzfisch.de &#187; Emacs</title>
	<atom:link href="http://www.glotzfisch.de/category/os-and-apps/emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.glotzfisch.de</link>
	<description>If something does not work out the way you want it to - try something different</description>
	<lastBuildDate>Wed, 26 May 2010 08:43:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>EEEmacs</title>
		<link>http://www.glotzfisch.de/eeemacs/</link>
		<comments>http://www.glotzfisch.de/eeemacs/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 11:02:13 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/eeemacs/</guid>
		<description><![CDATA[Hi Ho,
ich habe ein neues Spielzeug!
und beim Installieren habe ich gleich noch folgende nützliche Dinge herausgefunden:

.emacs:

Um Dateien mit emacs zu verknüpfen:

associate them with emacsclientw.exe
set the environment variable ALTERNATE_EDITOR to runemacs.exe (make sure path to emacs bin dir is in Path variable)


 Add this to .emacs:
(server-start)
(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)

gnuclientw brauche ich also nicht mehr&#8230; (remove the whole gnuclient [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Ho,</p>
<p>ich habe ein neues <a href="http://eeepc.asus.com/global/901.htm" target="_blank">Spielzeug</a>!</p>
<p>und beim Installieren habe ich gleich noch folgende nützliche Dinge herausgefunden:</p>
<ul>
<li>.emacs:
<ul>
<li>Um Dateien mit emacs zu verknüpfen:
<ul>
<li>associate them with <code>emacsclientw.exe</code></li>
<li>set the environment variable <code>ALTERNATE_EDITOR</code> to <code>runemacs.exe</code> (make sure path to emacs bin dir is in Path variable)</li>
</ul>
</li>
<li> Add this to .emacs:
<pre>(server-start)
(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)</pre>
</li>
<li>gnuclientw brauche ich also nicht mehr&#8230; (remove the whole gnuclient stuff); reload emacs (Vista: this application wants to act as a server&#8230; soso)</li>
</ul>
</li>
</ul>
<p>Links:</p>
<ul>
<li><a href="http://www.gnu.org/software/emacs/windows/Installing-Emacs.html#Installing-Emacs" target="_blank">http://www.gnu.org/software/emacs/windows/Installing-Emacs.html#Installing-Emacs</a></li>
<li><a href="http://shreevatsa.wordpress.com/2007/01/06/using-emacsclient/" target="_blank">http://shreevatsa.wordpress.com/2007/01/06/using-emacsclient/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/eeemacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RegExp für den emacs</title>
		<link>http://www.glotzfisch.de/regexp-fur-den-emacs/</link>
		<comments>http://www.glotzfisch.de/regexp-fur-den-emacs/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 12:16:28 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[RegExp]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/regexp-fur-den-emacs/</guid>
		<description><![CDATA[
 In einer Liste die führenden Zahlen plus Leerzeichen ersetzen:

     (query-replace-regexp "^[[:digit:]]* " "" nil nil nil)

 Alle Zeichen bis zum ersten Punkt ersetzen:

     (query-replace-regexp ".*[.]" "xx" nil nil nil)

 jedes Zeichen durch Zeichen plus Tab ersetzen (zum pasten nach Excel):

     (replace-regexp "\\(.\\)" [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> In einer Liste die führenden Zahlen plus Leerzeichen ersetzen:</li>
</ul>
<pre>     (query-replace-regexp "^[[:digit:]]* " "" nil nil nil)</pre>
<ul>
<li> Alle Zeichen bis zum ersten Punkt ersetzen:</li>
</ul>
<pre>     (query-replace-regexp ".*[.]" "xx" nil nil nil)</pre>
<ul>
<li> jedes Zeichen durch Zeichen plus Tab ersetzen (zum pasten nach Excel):</li>
</ul>
<pre>     (replace-regexp "\\(.\\)" "\\1	" nil nil nil)</pre>
<ul>
<li> mehrfache Leerzeichen durch ein einzelnes ersetzen:</li>
</ul>
<pre>     (query-replace-regexp "\\( \\)+" " " nil nil nil)</pre>
<ul>
<li> Tausche Satzteile&#8230; aus &#8220;ESO Press Release 27/04 (24 November 2004)&#8221; wird &#8220;ESO 27/04 (24 November 2004) &#8211; Press Release&#8221;</li>
</ul>
<pre>     (query-replace-regexp "ESO \\([A-Z a-z]*\\)\\([0-9 a-z -/]*\\)
  \\((.*)\\)" "ESO \\2 \\3 - \\1" nil nil nil)</pre>
<ul>
<li> Tausche zwei Zeilen (h3 und img)</li>
</ul>
<pre>  (query-replace-regexp "\\(&lt;h2.*h2&gt;\\)\n\\(&lt;img.*&gt;\\)" "\\2\n\\1" nil nil nil)</pre>
<ul>
<li> RFC 822 erlaubt ein einfacheres Datumsformat für RSS Feeds&#8230; So get rid of these useless Mon, Tue, &#8230; and so on&#8230;</li>
</ul>
<pre>   (query-replace-regexp "\\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\), " "" nil nil nil)</pre>
<h2></h2>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/regexp-fur-den-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
