<?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: Executing Shell Commands in Emacs</title>
	<atom:link href="http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/</link>
	<description>a blog about mastering the world&#039;s best text editor</description>
	<lastBuildDate>Fri, 17 May 2013 21:26:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Compiling and running scripts in Emacs &#124; Mastering Emacs</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-9891</link>
		<dc:creator>Compiling and running scripts in Emacs &#124; Mastering Emacs</dc:creator>
		<pubDate>Tue, 29 May 2012 15:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-9891</guid>
		<description><![CDATA[[...] talked about running shells and executing shell commands in Emacs before, but that&#8217;s mostly used for ad hoc commands or spelunking; what if you want [...]]]></description>
		<content:encoded><![CDATA[<p>[...] talked about running shells and executing shell commands in Emacs before, but that&#8217;s mostly used for ad hoc commands or spelunking; what if you want [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2090</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Mon, 24 Oct 2011 21:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2090</guid>
		<description><![CDATA[The obvious issue with recursive minibuffers is the potential to inadvertently not exit all the way out of the call stack. I went looking for some kind of built-in assistance for this issue, and found minibuffer-depth-indicate-mode which adds a depth count to the minibuffer whenever you are more than one level deep. Recommended.]]></description>
		<content:encoded><![CDATA[<p>The obvious issue with recursive minibuffers is the potential to inadvertently not exit all the way out of the call stack. I went looking for some kind of built-in assistance for this issue, and found minibuffer-depth-indicate-mode which adds a depth count to the minibuffer whenever you are more than one level deep. Recommended.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Making The Emacs Minibuffer Recursive &#124; Irreal</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2079</link>
		<dc:creator>Making The Emacs Minibuffer Recursive &#124; Irreal</dc:creator>
		<pubDate>Sun, 23 Oct 2011 20:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2079</guid>
		<description><![CDATA[[...] over at Mastering Emacs, has a great post on Executing Shell Commands in Emacs and does his usual excellent job of explaining the fine points of his subject matter. I&#8217;ve [...]]]></description>
		<content:encoded><![CDATA[<p>[...] over at Mastering Emacs, has a great post on Executing Shell Commands in Emacs and does his usual excellent job of explaining the fine points of his subject matter. I&#8217;ve [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2028</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 20 Oct 2011 22:14:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2028</guid>
		<description><![CDATA[Thank you for pointing out M-&amp;]]></description>
		<content:encoded><![CDATA[<p>Thank you for pointing out M-&amp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: emaniacs</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2025</link>
		<dc:creator>emaniacs</dc:creator>
		<pubDate>Thu, 20 Oct 2011 13:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2025</guid>
		<description><![CDATA[I like this article,
and i use double f1 to replace M-!
essentially i use f1 followed by one character to call shell command, like  to call date, and many more...]]></description>
		<content:encoded><![CDATA[<p>I like this article,<br />
and i use double f1 to replace M-!<br />
essentially i use f1 followed by one character to call shell command, like  to call date, and many more&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mickey</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2023</link>
		<dc:creator>mickey</dc:creator>
		<pubDate>Thu, 20 Oct 2011 07:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2023</guid>
		<description><![CDATA[Ah, yes, good catch; because shell commands terminate with a new line -- usually -- you will have to delete it by moving to the end with &lt;code&gt;C-e&lt;/code&gt; then typing &lt;code&gt;C-d&lt;/code&gt;. I forgot to mention that. Thanks! :)]]></description>
		<content:encoded><![CDATA[<p>Ah, yes, good catch; because shell commands terminate with a new line &#8212; usually &#8212; you will have to delete it by moving to the end with <code>C-e</code> then typing <code>C-d</code>. I forgot to mention that. Thanks! <img src='http://www.masteringemacs.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cristian</title>
		<link>http://www.masteringemacs.org/articles/2011/10/19/executing-shell-commands-emacs/#comment-2019</link>
		<dc:creator>Cristian</dc:creator>
		<pubDate>Wed, 19 Oct 2011 23:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=468#comment-2019</guid>
		<description><![CDATA[Great resource. I have never been able to incorporate shell commands too much into my Emacs workflow; I&#039;ll try to fix that.

I tried your recursive minibuffers example, but ran into a problem. Typing C-u M-! pwd RET appends a random ^J character so I get these extra newlines. Any idea what I&#039;m doing wrong?]]></description>
		<content:encoded><![CDATA[<p>Great resource. I have never been able to incorporate shell commands too much into my Emacs workflow; I&#8217;ll try to fix that.</p>
<p>I tried your recursive minibuffers example, but ran into a problem. Typing C-u M-! pwd RET appends a random ^J character so I get these extra newlines. Any idea what I&#8217;m doing wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
