<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
<channel>
    <title>rlazo's blog - BEH</title>
    <link>http://rlazo.supersized.org/</link>
    <description>My blog, my projects and some information about me...</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3-alpha1 - http://www.s9y.org/</generator>
    <pubDate>Mon, 19 May 2008 04:35:22 GMT</pubDate>

    <image>
        <url>http://rlazo.supersized.org/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: rlazo's blog - BEH - My blog, my projects and some information about me...</title>
        <link>http://rlazo.supersized.org/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>[BEH] How to make dired open several files in the background</title>
    <link>http://rlazo.supersized.org/archives/76-BEH-How-to-make-dired-open-several-files-in-the-background.html</link>
            <category>BEH</category>
            <category>Emacs</category>
    
    <comments>http://rlazo.supersized.org/archives/76-BEH-How-to-make-dired-open-several-files-in-the-background.html#comments</comments>
    <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=76</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=76</wfw:commentRss>
    

    <author>nospam@example.com (Rodrigo Lazo)</author>
    <content:encoded>
    &lt;p&gt;You will need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;dired-x.el&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;The question&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;Is there some keybinding or command in Dired that  open in background all marked files?&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;The solution&lt;/h3&gt;
&lt;p&gt;First, mark all the files you will want to open and then use &lt;strong&gt;&#039;C-u F&#039;&lt;/strong&gt; 
&lt;p&gt;&lt;a onclick=&quot;javascript:urchinTracker(&#039;/extlink/permalink.gmane.org/gmane.emacs.help/54121&#039;);&quot; href=&#039;http://permalink.gmane.org/gmane.emacs.help/54121&#039;&gt;Here is the link&lt;/a&gt; of the thread 
    </content:encoded>

    <pubDate>Mon, 19 May 2008 06:35:22 +0200</pubDate>
    <guid isPermaLink="false">http://rlazo.supersized.org/archives/76-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>[BEH] How to display info help inside a box</title>
    <link>http://rlazo.supersized.org/archives/70-BEH-How-to-display-info-help-inside-a-box.html</link>
            <category>BEH</category>
            <category>Emacs</category>
    
    <comments>http://rlazo.supersized.org/archives/70-BEH-How-to-display-info-help-inside-a-box.html#comments</comments>
    <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=70</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=70</wfw:commentRss>
    

    <author>nospam@example.com (Rodrigo Lazo)</author>
    <content:encoded>
    &lt;p&gt;If you have ever read the emacs-help mailing list, I&#039;m sure you have seen this picture:&lt;/p&gt;

&lt;a onclick=&quot;javascript:urchinTracker(&#039;/extlink/img521.imageshack.us/my.php?image=screenshotoz8.png&#039;);&quot; target=&#039;_blank&#039; href=&#039;http://img521.imageshack.us/my.php?image=screenshotoz8.png&#039;&gt;&lt;img src=&quot;http://img521.imageshack.us/img521/667/screenshotoz8.th.png&quot; border=&quot;0&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;

&lt;p&gt;That ASCII-art box is great for many things, specially when used to
describe a function, variable or key. The necesary package
is &lt;a onclick=&quot;javascript:urchinTracker(&#039;/extlink/www.emacswiki.org/cgi-bin/wiki/BoxQuote&#039;);&quot; href=&quot;http://www.emacswiki.org/cgi-bin/wiki/BoxQuote&quot;&gt;boxquote&lt;/a&gt;. And
to have all its power at your fingertips, a snippet for your
.emacs&lt;/p&gt;

&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;
;;;_. boxquote

(require &#039;boxquote)

(global-set-key (kbd &quot;C-c b y&quot;)   &#039;boxquote-yank)
(global-set-key (kbd &quot;C-c b r&quot;)   &#039;boxquote-region)         
(global-set-key (kbd &quot;C-c b u&quot;)   &#039;boxquote-unbox-region)
(global-set-key (kbd &quot;C-c b t&quot;)   &#039;boxquote-title)          
(global-set-key (kbd &quot;C-c b i&quot;)   &#039;boxquote-insert-file) 
(global-set-key (kbd &quot;C-c b k&quot;)   &#039;boxquote-kill) 
(global-set-key (kbd &quot;C-c b s&quot;)   &#039;boxquote-shell-command)
 
(global-set-key (kbd &quot;C-c b b&quot;)   &#039;boxquote-buffer)
(global-set-key (kbd &quot;C-c b p&quot;)   &#039;boxquote-paragraph) 
(global-set-key (kbd &quot;C-c b n&quot;)   &#039;boxquote-narrow-to-boxquote)

(global-set-key (kbd &quot;C-c b w&quot;)   &#039;boxquote-where-is) 
(global-set-key (kbd &quot;C-c b d f&quot;) &#039;boxquote-describe-function)
(global-set-key (kbd &quot;C-c b d k&quot;) &#039;boxquote-describe-key)
(global-set-key (kbd &quot;C-c b d v&quot;) &#039;boxquote-describe-variable)
&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;


&lt;p&gt;&lt;a onclick=&quot;javascript:urchinTracker(&#039;/extlink/permalink.gmane.org/gmane.emacs.gnus.user/10875&#039;);&quot; href=&quot;http://permalink.gmane.org/gmane.emacs.gnus.user/10875&quot;&gt;Here
is the link&lt;/a&gt; to the gmane archive of the original message.
 
    </content:encoded>

    <pubDate>Sun, 20 Apr 2008 19:12:50 +0200</pubDate>
    <guid isPermaLink="false">http://rlazo.supersized.org/archives/70-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>
<item>
    <title>BEH: eshell and su</title>
    <link>http://rlazo.supersized.org/archives/67-BEH-eshell-and-su.html</link>
            <category>BEH</category>
            <category>Emacs</category>
            <category>Free Software</category>
    
    <comments>http://rlazo.supersized.org/archives/67-BEH-eshell-and-su.html#comments</comments>
    <wfw:comment>http://rlazo.supersized.org/wfwcomment.php?cid=67</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://rlazo.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=67</wfw:commentRss>
    

    <author>nospam@example.com (Rodrigo Lazo)</author>
    <content:encoded>
    &lt;p&gt;With this entry a new category for emacs related posts will begin
here. &lt;em&gt;Bits from emacs.help&lt;/em&gt; are tips and tricks found while reading the emacs.help mailing list&lt;/p&gt;

&lt;p&gt;Well, this tips is how to use su inside eshell&lt;p&gt;

&lt;p&gt;From the post: &lt;em&gt;&quot;...Doing su or sudo su does not work like you
expect. This works under the normal shell (M-x shell). I am su:ing
quite much ...&quot;&lt;/em&gt; If you have tried, using su inside eshell is
quite paintful, and doesn&#039;t work very well. But, come on, there should
be a way of doing it, right?

&lt;p&gt;From the reply: &lt;em&gt;&quot;...Tramp 2.1 supports it. Try &quot;cd/sudo::&quot; in
eshell...&quot;&lt;/em&gt; And that&#039;s it! you have a fully functional &#039;suded&#039;
eshell with completition available.
 
    </content:encoded>

    <pubDate>Mon, 31 Mar 2008 02:01:08 +0200</pubDate>
    <guid isPermaLink="false">http://rlazo.supersized.org/archives/67-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
</item>

</channel>
</rss>