<?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>rlazo&#039;s blog &#187; Emacs</title>
	<atom:link href="http://www.rlazo.org/category/emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rlazo.org</link>
	<description></description>
	<lastBuildDate>Sat, 22 Sep 2012 14:16:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Disable Org-mode Babel evaluation confirmation per file</title>
		<link>http://www.rlazo.org/2012/05/05/disable-org-mode-babel-evaluation-confirmation-per-file/</link>
		<comments>http://www.rlazo.org/2012/05/05/disable-org-mode-babel-evaluation-confirmation-per-file/#comments</comments>
		<pubDate>Sun, 06 May 2012 04:29:21 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[OrgMode]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=381</guid>
		<description><![CDATA[Today I started experimenting with Babel, part of org-mode that enables execution of code defined inside your org file. It&#8217;s great, although it&#8217;s taking me a little effort to get use to it. Well, as with any mechanism that executes arbitrary code in your machine, it&#8217;s a security risk, so by default, org-mode ask you [...]]]></description>
				<content:encoded><![CDATA[<p>  Today I started experimenting with <a href="http://orgmode.org/manual/Working-With-Source-Code.html#Working-With-Source-Code">Babel</a>, part of org-mode that   enables execution of code defined inside your org file. It&#8217;s great,   although it&#8217;s taking me a little effort to get use to it. </p>
<p>   Well, as with any mechanism that executes arbitrary code in your   machine, it&#8217;s a security risk, so by default, org-mode ask you   prompts you for confirmation before executing any block of   code. Well, what if <b>you</b> are writing the org file and the code can   be considered trustworthy, but you are asked   every. single. time. whether it&#8217;s OK or not to execute that file? As   I found in <a href="http://irreal.org/blog/?p=206">Irreal&#8217;s blog post</a>, doing that is as easy as putting </p>
<pre class="src src-sh"><span style="color: #88bd91;"># </span><span style="color: #88bd91;">-*- org-confirm-babel-evaluate: nil -*-</span>
</pre>
<p>   at the beginning of your org-file. In retrospective, it&#8217;s <b>the</b>   obvious solution. I always forget file vars. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2012/05/05/disable-org-mode-babel-evaluation-confirmation-per-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About interactivity and immediate feedback</title>
		<link>http://www.rlazo.org/2012/03/30/about-interactivity-and-immediate-feedback/</link>
		<comments>http://www.rlazo.org/2012/03/30/about-interactivity-and-immediate-feedback/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 13:04:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=367</guid>
		<description><![CDATA[TL;DR Watch THIS. Jeff Atwood at Coding Horror has made a couple of really interesting blog posts about the true interactivity and feedback loop delay. Basically, the longer it takes to get feedback about what you are doing, the worse. In What you can&#8217;t see you can&#8217;t get, about document authoring, Jeff mentions the gripes [...]]]></description>
				<content:encoded><![CDATA[<p>  <b>TL;DR</b> Watch <a href="https://vimeo.com/36579366">THIS</a>. </p>
<p>   Jeff Atwood at <a href="#www.codinghorror.com">Coding Horror</a> has made a couple of really interesting   blog posts about the <i>true</i> interactivity and feedback loop   delay. Basically, the longer it takes to get feedback about what you   are doing, the worse. </p>
<p>   In <a href="http://www.codinghorror.com/blog/2012/03/what-you-cant-see-you-cant-get.html">What you can&#8217;t see you can&#8217;t get</a>, about document authoring, Jeff   mentions the gripes of working with WYSIWYG editors because of   hidden format tags or invisible whitespaces. The current solution to   this is using LaTeX or markup languages, where you can focus on   content and intermix formatting tags whenever is necessary. I deeply   believe this is a way better approach. <b>BUT</b> there is a <span style="text-decoration:underline;">long</span>   feedback loop between what you are writing and the actual document   being produced. Usually, you write some content, save the document,   compile (a couple of times if necessary), and then, if everything   goes according to plan, you can see your document in a pdf/dvi   viewer. When I was an undergrad student I remember my friends and I   learning LaTeX. Everybody <b>knew</b> that, if you took to long to   compile your document, you had to pray to the LaTeX gods for it to   compile correctly, otherwise you were trap in a bug hunting quest   for the next half an hour. Eventually, for any non-trivial document,   you compile frequently and split your screen in two, in one side you   have your text editor, and in the other your document viewer, to be   able to preview your work. </p>
<div class="figure">
<p><img src="http://media.rlazo.org/pics/latex-two-windows.jpg" alt="Two window setting for later" title="Two windows" /></p>
<p>Source http://www.codinghorror.com/blog/2012/03/what-you-cant-see-you-cant-get.html</p>
</p></div>
<p>   What about being able to switch between the two easily, while   keeping track of where each part of the document came from? Enter   <a href="http://www.aviz.fr/gliimpse/">Gliimpse</a> project. </p>
<p>     <iframe width="420" height="315" src="http://www.youtube.com/embed/UK42Hont3to" frameborder="0" allowfullscreen></iframe>
<p>   Cool! </p>
<p>   But, in <a href="http://www.codinghorror.com/blog/2012/03/visualizing-code-to-fail-faster.html">Visualizing code to fail faster</a>, we enter the world of <a href="http://worrydream.com/">Bret Victor</a> and his principle: Help ideas flourish by giving their   authors tools with immediate feedback. He argues that, by allowing   people to see what they are doing in the computer right away,   instead of having to imagine it until the computer is ready to   display the results, you strength ideas and enable more creativity   and better understanding. At first it didn&#8217;t felt attracted to the   concept, but after watching his talk at CUSEC I&#8217;m convinced. </p>
<p>     <iframe src="http://player.vimeo.com/video/36579366?byline=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p>   Make some time to <b>watch the video</b>. It&#8217;s <span style="text-decoration:underline;">AWESOME</span>, really. I mean   it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2012/03/30/about-interactivity-and-immediate-feedback/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How emacs changed my life by Yukihiro &#8220;Matz&#8221; Matsumoto</title>
		<link>http://www.rlazo.org/2012/03/27/how-emacs-changed-my-life-by-yukihiro-matz-matsumoto/</link>
		<comments>http://www.rlazo.org/2012/03/27/how-emacs-changed-my-life-by-yukihiro-matz-matsumoto/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 22:18:14 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=364</guid>
		<description><![CDATA[I hate slideshare, but I couldn&#8217;t find them anywherer else: Slides]]></description>
				<content:encoded><![CDATA[<p>  I hate slideshare, but I couldn&#8217;t find them anywherer else: </p>
<p>   <a href="http://www.slideshare.net/yukihiro_matz/how-emacs-changed-my-life">Slides</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2012/03/27/how-emacs-changed-my-life-by-yukihiro-matz-matsumoto/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change ediff options</title>
		<link>http://www.rlazo.org/2011/09/16/change-ediff-options/</link>
		<comments>http://www.rlazo.org/2011/09/16/change-ediff-options/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 00:25:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=332</guid>
		<description><![CDATA[Ediff is a great tool for diffing to files/buffers and merging changes. One thing I liked is that you can make it ignore white-space only differences. I used to do activate it every time. Finally I got to the point that I wanted to make the change permanent, so I followed EmacsWiki advice: Whitespace sensitivity [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.emacswiki.org/emacs/EdiffMode">Ediff</a> is a great tool for diffing to files/buffers and merging changes. One thing I liked is that you can make it ignore white-space only differences. I used to do activate it every time. Finally I got to the point that I wanted to make the change permanent, so I followed <a href="http://www.emacswiki.org/emacs/EdiffMode">EmacsWiki</a> advice:</p>
<p><code>Whitespace sensitivity – Include ‘-w’ in ‘ediff-diff-options’.</code></p>
<p>So, I did a quick <code>(setq...)</code> but it didn&#8217;t work. After some googling, I came across <a href="http://lists.gnu.org/archive/html/help-gnu-emacs/2006-09/msg00425.html">this message</a>. Seems like you <strong>have</strong> to make the changes using customize, otherwise it won&#8217;t work. So, if somebody else is having this problem, making the changes using customize (<code>M-x customize-group RET ediff-diff</code>) is the way to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2011/09/16/change-ediff-options/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Emacs eclim</title>
		<link>http://www.rlazo.org/2011/09/14/emacs-eclim/</link>
		<comments>http://www.rlazo.org/2011/09/14/emacs-eclim/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 20:07:45 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Eclim]]></category>
		<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=329</guid>
		<description><![CDATA[I&#8217;ve been doing some java development lately and while Eclipse is nice and IntelliJ IDEA is a very good alternative, both are nowhere near emacs in text manipulation capabilities. On the other hand, emacs is awesome in every way except context sensitive completion and re-factoring across a project, a must for Java. From the eclipse [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been doing some java development lately and while <a href="http://eclipse.org">Eclipse</a> is nice and <a href="http://www.jetbrains.com/idea/">IntelliJ IDEA</a> is a very good alternative, both are nowhere near emacs in text manipulation capabilities. On the other hand, emacs is awesome in every way except context sensitive completion and re-factoring across a project, a must for Java.</p>
<p>From the eclipse perspective, there are plugins that simulate emacs keybindings, but I was never truly comfortable using them. Emacs is more than its keybindings. From the emacs perspective, there is the <a href="http://jdee.sourceforge.net/">Java Development Environment for Emacs</a>, or JDEE, but it doesn&#8217;t seem to be under active development; while it gained some momentum last year, their devel mailing list statistics show that only 11 messages have been send this year.</p>
<p>Then, I found <a href="http://eclim.org/">Eclim</a>, and as stated in their homepage: &#8220;The primary goal of eclim is to bring Eclipse functionality to the Vim editor. The initial goal was to provide Eclipse’s java functionality in vim, but support for various other languages… have been added and several more are planned.&#8221;</p>
<p>Basically, eclim has two parts, a java plugin that hooks into eclipse and exposes some of its functionality, and a VIM plugin. I like this approach. For a lot of people, emacs and vim are almost their natural environment, so making other tools provide extra functionality to them instead of trying to simulate the editor experience is the way to go.</p>
<p>For emacs, you have the <a href="https://github.com/senny/emacs-eclim">Emacs Eclim</a> project, hosted in github, which is the equivalent of the vim plugin. To use it, first install eclim, then download emacs-eclim from github, and finally add to you .emacs:</p>
<pre class="src src-lisp">(add-to-list 'load-path (expand-file-name <span style="color: #8b2252;">"/path/to/emacs-eclim/"</span>))
(add-to-list 'load-path (expand-file-name <span style="color: #8b2252;">"/path/to/emacs-eclim/vendor"</span>))
(<span style="color: #a020f0;">require</span> '<span style="color: #008b8b;">eclim</span>)

(setq eclim-auto-save t) <span style="color: #b22222;">;; </span><span style="color: #b22222;">very important</span>
(global-eclim-mode)</pre>
<p>And now you are ready to go. The main feature missing in emacs eclim is doc searching, but AFAIK it&#8217;s provided by eclim, so it shouldn&#8217;t be too hard to implement the emacs part. Emacs eclim is under active development.</p>
<p>As a side note, if you want to do some Android development, I deeply recommend you to use IntelliJ. It has built-in Android support and works great. A month ago I tried to setup Eclipse&#8217;s android plugin and it was extremely frustrating. So, try IntelliJ if you want to experiment a different IDE and can withstand its no so pretty interface. (They have a community edition which is OpenSource, check it <a href="http://www.jetbrains.org/pages/viewpage.action?pageId=983211">here</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2011/09/14/emacs-eclim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>StumpWM: my new Window Manager</title>
		<link>http://www.rlazo.org/2011/09/10/stumpwm-my-new-window-manager/</link>
		<comments>http://www.rlazo.org/2011/09/10/stumpwm-my-new-window-manager/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 13:52:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[StumpWM]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=325</guid>
		<description><![CDATA[I used Awesome as my window manager for over two years and I really like it. It was my first &#8220;tiling&#8221; WM (although it&#8217;s described as a tiling wm, but more of a floating-tiling mix, see its features and non-features). Besides that, it was really configurable, and I mean it. Your configuration file (.config/rc.lua) may [...]]]></description>
				<content:encoded><![CDATA[<p>I used <a href="http://awesome.naquadah.org/">Awesome</a> as my window manager for over two years and I really like it. It was my first &#8220;tiling&#8221; WM (although it&#8217;s described as a tiling wm, but more of a floating-tiling mix, see its <a href="http://awesome.naquadah.org/">features and non-features</a>). Besides that, it was really configurable, and I mean it. Your configuration file (.config/rc.lua) may seem like half of the implementation of the WM, because there is defined which layouts are supported, how many tags to use, how to name them, the default keybindings, the mouse actions, etc. (<a href="https://dl-web.dropbox.com/get/Public/rc.lua?w=b333ab49">here is mine</a>). Probably, as with many WM, Awesome is too spartan for Gnome/KDE users. But again, it is for people that like minimalism. If you want to give it a try, do it, and do it for a week at least. It&#8217;s nice.</p>
<p>If it is soooo good, why did I change it? well, I had some stability issues with it for a while (which ended been problems with Xorg, so it&#8217;s not their fault). Also, there are two features I don&#8217;t like. First, while bringing lots of flexibility, the config file is usually &#8220;cluttered&#8221; with code you don&#8217;t want to see. As I said, it seems like half of the WM is written in the config file, so you have tons of code defining the default WM behaviour and, after a while, you stop feeling like you are configuring the WM and start feeling that you are patching it. Every new release was an exercise of retrofitting your changes to the new default config file, otherwise you may lose some of the new features bring by the update. Awful. Second, <a href="http://www.lua.org/">lua</a>. The config file and other parts of the WM are written in lua, which is not part of my personal preferences. I may be biased by my lack of knowledge about programming in lua, or maybe not, even <a href="http://julien.danjou.info/blog/">Julien Danjou</a>, the original author of Awesome, has <a href="http://julien.danjou.info/blog/2011.html#Why_not_Lua">ranted about it</a>.</p>
<p>So, one day I decided to try other tiling WM. I installed stumpwm, <a href="http://i3.zekjur.net/">i3</a>, <a href="http://www.nongnu.org/ratpoison/">ratpoison</a>, and <a href="http://xmonad.org/">xmonad</a>. I never got pass the first one.</p>
<p>StumpWM is not the most stable WM out there, nor the most lightweight (it requires a CL interpreter), and it has neither a large nor extremely active community (its latest stable release is from March 2010, but the repository is active so you get your code from there). Now, to the good stuff.</p>
<p>StumpWM is tiling, but has some support for floating &#8220;groups&#8221; (desktops). AFAIK, it doesn&#8217;t have the advance automatic tiling layouts of Awesome, so its window placement capabilities are more closely related to GNU Screen or Emacs Frames, but given that I usually have a single app in full-screen mode it doesn&#8217;t matter. What really make StumpWM shine is that it&#8217;s written in Common-Lisp. It&#8217;s at least as configurable as awesome while keeping your configuration file clean. Being Common-lisp, you can write a new function and it will override the previous one (not as powerful as advices in emacs, but close enough). If you don&#8217;t know lisp, learning it is very easy. Once you passed the feeling of &#8220;why there are so many parenthesis?&#8221; and get use to the prefix (+ 3 2) syntax, you will see it&#8217;s pure genius.</p>
<p>If you want to give it a try, the best way to do it is following the <a href="https://wiki.archlinux.org/index.php/Stumpwm">ArchLinux wiki</a>. Also, take a look at the awesome <a href="http://www.youtube.com/watch?v=tKt_rVO960Q">Stumpwm experience video</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2011/09/10/stumpwm-my-new-window-manager/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Twitter in emacs (twittering mode)</title>
		<link>http://www.rlazo.org/2011/02/17/twitter-in-emacs-twittering-mode/</link>
		<comments>http://www.rlazo.org/2011/02/17/twitter-in-emacs-twittering-mode/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 19:44:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=275</guid>
		<description><![CDATA[Edit: As pointed out by Seth in a comment, you don&#8217;t need to set your username nor password if you are going to use oauth and the master password, as I&#8217;m doing. My configuration snippet now reflects that. I started to get interested on Twitter a few weeks ago, after some time having my account [...]]]></description>
				<content:encoded><![CDATA[<p><b>Edit:</b> <em>As pointed out by Seth in a comment, you don&#8217;t need to set your username nor password if you are going to use oauth and the master password, as I&#8217;m doing. My configuration snippet now reflects that. </em> </p>
<p> I started to get interested on Twitter a few weeks ago, after some time having my account abandoned. I&#8217;m using <a href="http://twmode.sourceforge.net/">Twittering mode</a>, which is pretty nice: has support for oauth (twitter.el don&#8217;t have that, so don&#8217;t bother trying to use it), supports multiple url shorteners (I use bit.ly), easy navigation, tons of functionalities (check the <a href="http://www.emacswiki.org/emacs/TwitteringMode">EmacsWiki</a> for a comprehensive list). </p>
<p> Get it from github: </p>
<pre class="src src-sh">git clone git://github.com/hayamiz/twittering-mode.git
</pre>
<p> 
<p> Today I found this <a href="http://www.reverttoconsole.com/blog/nix/twitter-mode-for-emacs-with-oauth/">blog post</a>, which explains how to avoid the oauth request every time you start your emacs: </p>
<pre class="src src-elisp">(setq twittering-use-master-password t)
</pre>
<p> 
<p> Of course, <a href="http://www.emacswiki.org/emacs/TwitteringMode">EmacsWiki</a> also explains that but is burried inside a comment, so I didn&#8217;t read it&hellip; This is my configuration: </p>
<pre class="src src-elisp">(<span style="color: #a020f0;">require</span> '<span style="color: #008b8b;">twittering-mode</span>)

(<span style="color: #a020f0;">eval-after-load</span> <span style="color: #8b2252;">"twittering-mode"</span>
  '(<span style="color: #a020f0;">progn</span>
     (twittering-icon-mode)))

(setq twittering-timer-interval 36000     <span style="color: #b22222;">; </span><span style="color: #b22222;">I don't want auto-refresh
</span>      twittering-tinyurl-service 'bit.ly
      twittering-bitly-login <span style="color: #8b2252;">"XXX"</span>
      twittering-bitly-api-key <span style="color: #8b2252;">"XXX"</span>      <span style="color: #b22222;">; </span><span style="color: #b22222;">find it on bit.ly settings
</span>      twittering-use-master-password t
      twittering-url-show-status nil)

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2011/02/17/twitter-in-emacs-twittering-mode/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Things I keep forgetting: Gnus reply key bindings</title>
		<link>http://www.rlazo.org/2010/11/19/things-i-keep-forgetting-gnus-reply-key-bindings/</link>
		<comments>http://www.rlazo.org/2010/11/19/things-i-keep-forgetting-gnus-reply-key-bindings/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:44:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Gnus]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=247</guid>
		<description><![CDATA[edit: added mail-forward Summary mode: While reading a mail, you could reply to it using the following commands: key command r gnus-summary-reply R gnus-summary-reply-with-original S w gnus-summary-wide-reply S W gnus-summary-wide-reply-with-original C-c C-f gnus-summary-mail-forward Message mode: If you are writing a regular reply and then you decide to make it &#8220;wide&#8221; use: key command C-c C-f [...]]]></description>
				<content:encoded><![CDATA[<p><b>edit:</b> added mail-forward </p>
<div id="outline-container-1" class="outline-3">
<h3 id="sec-1">Summary mode: </h3>
<div class="outline-text-3" id="text-1">
<p>While reading a mail, you could reply to it using the following commands: </p>
<table  border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides" class="orgtable">
<caption></caption>
<colgroup>
<col align="left" />
<col align="left" /> </colgroup>
<thead>
<tr>
<th scope="col">key</th>
<th scope="col">command</th>
</tr>
</thead>
<tbody>
<tr>
<td>r</td>
<td>gnus-summary-reply</td>
</tr>
<tr>
<td>R</td>
<td>gnus-summary-reply-with-original</td>
</tr>
<tr>
<td>S w</td>
<td>gnus-summary-wide-reply</td>
</tr>
<tr>
<td>S W</td>
<td>gnus-summary-wide-reply-with-original</td>
</tr>
<tr>
<td>C-c C-f</td>
<td>gnus-summary-mail-forward</td>
</tr>
</tbody>
</table></div>
</p></div>
<div id="outline-container-2" class="outline-3">
<h3 id="sec-2">Message mode: </h3>
<div class="outline-text-3" id="text-2">
<p>If you are writing a regular reply and then you decide to make it &#8220;wide&#8221; use: </p>
<table  border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides" class="orgtable">
<caption></caption>
<colgroup>
<col align="left" />
<col align="left" /> </colgroup>
<thead>
<tr>
<th scope="col">key</th>
<th scope="col">command</th>
</tr>
</thead>
<tbody>
<tr>
<td>C-c C-f w</td>
<td>message-insert-wide-reply</td>
</tr>
</tbody>
</table></div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2010/11/19/things-i-keep-forgetting-gnus-reply-key-bindings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ibuffer reference</title>
		<link>http://www.rlazo.org/2010/11/13/ibuffer-reference/</link>
		<comments>http://www.rlazo.org/2010/11/13/ibuffer-reference/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 18:20:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=230</guid>
		<description><![CDATA[For those who doesn&#8217;t know it, Ibuffer is an replacement for BufferMenu, which is a buffer showing, à la Dired, all currently open buffers. Ibuffer allows you to easily filter, group and operate over the buffers, which is quite useful. It&#8217;s included by default on any version greater than 22. You can directly invoke it [...]]]></description>
				<content:encoded><![CDATA[<p>For those who doesn&#8217;t know it, <a href="http://www.emacswiki.org/emacs/IbufferMode">Ibuffer</a> is an replacement for BufferMenu, which is a buffer showing, à la Dired, all currently open buffers. Ibuffer allows you to easily filter, group and operate over the buffers, which is quite useful. It&#8217;s included by default on any version greater than 22. </p>
<p> You can directly invoke it using <code>M-x ibuffer</code>, or make it replace BufferMenu by setting the appropriated key binding: </p>
<pre class="src src-elisp">(global-set-key (kbd <span style="color: #8b2252;">"C-x C-b"</span>) 'ibuffer)
</pre>
<p> Here is the mandatory screenshot: </p>
<p> <img src="http://www.rlazo.org/media/photos/ibuffer.jpg"  alt="http://www.rlazo.org/media/photos/ibuffer.jpg" /> </p>
<p> The interface shows information as columns (status, buffer name, size, major mode, filename), also allows you to do grouping (out of the box you have a single group, named &#8220;[ Default ]&#8220;). You can filter and sort the buffers (by major mode, filename, status, etc.) and operate over all or some of them (save, kill, search, etc.). </p>
<p> There are a lot of good posts around the web about Ibuffer: </p>
<ul>
<li> <a href="http://emacs-fu.blogspot.com/2010/02/dealing-with-many-buffers-ibuffer.html">emacs-fu</a> has an introduction to Ibuffer, including other two alternatives considered (ido, elscreen), plus an example of buffer grouping. </li>
<li> <a href="http://martinowen.net/blog/2010/02/tips-for-emacs-ibuffer.html">Martin Owen&#8217;s blog</a> also has an example of buffer grouping, plus a few more options (ibuffer-expert, ibuffer-show-empty-filter-groups, ibuffer-auto-mode, dired). </li>
<li> <a href="http://www.littleredbat.net/mk/blog/story/85/">Little red bat</a>, shows how to add a new column. </li>
<li> <a href="http://curiousprogrammer.wordpress.com/2009/04/02/ibuffer/">A curious programmer</a>, includes a small function to compare two marked buffers using ediff. </li>
<li> <a href="http://abstractfactory.blogspot.com/2009/08/ibuffer-if-you-do-not-use-it-you-are.html">The abstract factory</a>, includes a listing of some default keybindings, and how to combine them to get cool results. </li>
<li> <a href="http://mytechrants.wordpress.com/2010/03/25/emacs-tip-of-the-day-start-using-ibuffer-asap/">Tech Rants</a>, also includes a listing of key bindings, and describes the methods ibuffer-do-occur, ibuffer-do-isearch, ibuffer-do-query-replace and ibuffer-do-eval. Pretty cool. </li>
<li> Obviously, <a href="http://www.emacswiki.org/emacs/IbufferMode">EmacsWiki</a>. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2010/11/13/ibuffer-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>org-mode + wordpress = org2blog awesomeness</title>
		<link>http://www.rlazo.org/2010/10/28/org-mode-wordpress-org2blog-awesomeness/</link>
		<comments>http://www.rlazo.org/2010/10/28/org-mode-wordpress-org2blog-awesomeness/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 16:56:00 +0000</pubDate>
		<dc:creator>Rodrigo Lazo</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[OrgMode]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.rlazo.org/?p=226</guid>
		<description><![CDATA[I haven&#8217;t been blogging for a long time, and while most of the &#8220;reasons&#8221; for that have to do with my amount of free time, I also needed a small push to do it. My blog engine, as stated in another blog post, is WordPress. It&#8217;s full featured and very nice, but as a guy [...]]]></description>
				<content:encoded><![CDATA[<p>I haven&#8217;t been blogging for a long time, and while most of the &#8220;reasons&#8221; for that have to do with my amount of free time, I also needed a small push to do it. My blog engine, <a href="http://www.rlazo.org/2010/01/23/changes-in-the-website/">as stated in another blog post</a>, is WordPress. It&#8217;s full featured and very nice, but as a guy who lives inside Emacs as much as possible, the web interface is sub-optimal. </p>
<p> For those who doesn&#8217;t know it <a href="http://orgmode.org/">Org-mode</a> is an Emacs mode for /keeping notes, maintaining ToDo lists, doing project planning, and authoring with a fast and effective plain-text system/. If you want to learn more about it take a look at its <a href="http://orgmode.org/manual/index.html">manual</a> or to the <a href="http://orgmode.org/worg/org-tutorials/index.php">Talks and screencast</a>. </p>
<p> Well, I&#8217;m definitely not the only one blogging using orgmode, take a look at <a href="http://emacs-fu.blogspot.com/2009/05/writing-and-blogging-with-org-mode.html">this post</a> in the emacs-fu blog (which by the way is very good) which is a nice introduction to orgmode capabilities and markup. </p>
<p> So, let&#8217;s assume you wrote your post in orgmode, and you have your wordpress blog, and you want to publish&hellip; you have the awesome tool <a href="http://github.com/punchagan/org2blog">org2blog</a>. Very simple to use, you just do a checkout of the git repository </p>
<pre class="src src-bash">git clone http://github.com/punchagan/org2blog.git
</pre>
<p> then copy the the corresponding files to a directory in your load-path. My .emacs looks like this: </p>
<pre class="src src-elisp">(<span style="color: #a020f0;">require</span> '<span style="color: #008b8b;">org2blog</span>)
(setq org2blog-server-url <span style="color: #8b2252;">"http://www.rlazo.org/xmlrpc.php"</span>
     org2blog-server-user <span style="color: #8b2252;">"admin"</span>
     org2blog-use-tags-as-categories t
     org2blog-confirm-post t
     org2blog-server-weblog-id <span style="color: #8b2252;">""</span>)
</pre>
<p> It&#8217;s pretty much self-explanatory. </p>
<p> My configuration is a single file where each post is a subtree, using the same idea that <a href="http://sachachua.com">Sacha Chua</a> explains in <a href="http://sachachua.com/blog/2010/09/new-note-taking-workflow-with-emacs-org-mode/">this post</a> (BTW, that is also a nice blog to follow). If you read that post you will find that you need to patch the code from org2blog to add the command to create a blog post from the current subtree (which is <code>org2blog-post-subtree</code> ). But, since then, those changes have been integrated into org2blog repository, so no more patching required <img src='http://www.rlazo.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Happy blogging! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlazo.org/2010/10/28/org-mode-wordpress-org2blog-awesomeness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
