<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: The One True Editor	</title>
	<atom:link href="https://gregladen.com/blog/2009/03/03/the-one-true-editor/feed/" rel="self" type="application/rss+xml" />
	<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/</link>
	<description></description>
	<lastBuildDate>Mon, 09 Mar 2009 15:14:17 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.6</generator>
	<item>
		<title>
		By: Daniel Colascione		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532006</link>

		<dc:creator><![CDATA[Daniel Colascione]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 15:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532006</guid>

					<description><![CDATA[You&#039;d probably be happier with Emacs 23 -- which is pretty much stable at this point. It has the equivalent to cua and longlines-mode built into the core, so these features are much more robust.]]></description>
			<content:encoded><![CDATA[<p>You&#8217;d probably be happier with Emacs 23 &#8212; which is pretty much stable at this point. It has the equivalent to cua and longlines-mode built into the core, so these features are much more robust.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paul		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532005</link>

		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 14:43:33 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532005</guid>

					<description><![CDATA[Hmmm... my mistake: indeed longlines, which I see is still here in 23 as well as the new thing,  doesn&#039;t break words. In general I find that if some expected basic function/behaviour isn&#039;t present in Emacs, usually either its just not the default - perhaps because it&#039;s not considered &#039;proper emacs style&#039; - and needs configuring, or it&#039;s not been included but it can be found on emacswiki or somewhere. 

I don&#039;t know about cua mode but maybe something here will help: http://www.emacswiki.org/emacs/CopyAndPaste]]></description>
			<content:encoded><![CDATA[<p>Hmmm&#8230; my mistake: indeed longlines, which I see is still here in 23 as well as the new thing,  doesn&#8217;t break words. In general I find that if some expected basic function/behaviour isn&#8217;t present in Emacs, usually either its just not the default &#8211; perhaps because it&#8217;s not considered &#8216;proper emacs style&#8217; &#8211; and needs configuring, or it&#8217;s not been included but it can be found on emacswiki or somewhere. </p>
<p>I don&#8217;t know about cua mode but maybe something here will help: <a href="http://www.emacswiki.org/emacs/CopyAndPaste" rel="nofollow ugc">http://www.emacswiki.org/emacs/CopyAndPaste</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532004</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 12:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532004</guid>

					<description><![CDATA[aha...

     (setq default-major-mode &#039;text-mode)
     (add-hook &#039;text-mode-hook &#039;text-mode-hook-identify)
     (add-hook &#039;text-mode-hook &#039;longlines-mode)
     (add-hook &#039;text-mode-hook &#039;text-mode-hook-identify)
     (add-hook &#039;text-mode-hook &#039;cua-mode)

of course, cua mode is still kinda funky.  A ctrl-c does not copy stuff onto the system clipboard, but only to some special emacs clipboard.  ]]></description>
			<content:encoded><![CDATA[<p>aha&#8230;</p>
<p>     (setq default-major-mode &#8216;text-mode)<br />
     (add-hook &#8216;text-mode-hook &#8216;text-mode-hook-identify)<br />
     (add-hook &#8216;text-mode-hook &#8216;longlines-mode)<br />
     (add-hook &#8216;text-mode-hook &#8216;text-mode-hook-identify)<br />
     (add-hook &#8216;text-mode-hook &#8216;cua-mode)</p>
<p>of course, cua mode is still kinda funky.  A ctrl-c does not copy stuff onto the system clipboard, but only to some special emacs clipboard.  </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532003</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 12:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532003</guid>

					<description><![CDATA[Aha! Actually, something else is going on.  longlines-mode is what I want, and it works.  The problem is, how to get it to turn on automatically when emacs opens a text file.  I hooked it to text file mode, but it still does not turn on automatically.  My problem here is that I don&#039;t know what I&#039;m doing when it comes to lisp.  Or elisp to be exact. 

Ideally, text mode with longlines and cua turned on would work for me.  ]]></description>
			<content:encoded><![CDATA[<p>Aha! Actually, something else is going on.  longlines-mode is what I want, and it works.  The problem is, how to get it to turn on automatically when emacs opens a text file.  I hooked it to text file mode, but it still does not turn on automatically.  My problem here is that I don&#8217;t know what I&#8217;m doing when it comes to lisp.  Or elisp to be exact. </p>
<p>Ideally, text mode with longlines and cua turned on would work for me.  </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532002</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 12:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532002</guid>

					<description><![CDATA[Interesting.  My version of snapshot (a week old) does not seem to have that, but I&#039;m probably invoking it wrong.  I pobably didn&#039;t install everything.

It is astonishing that after 22 version of this software, which dates way back in time, it is only now that a very basic function that has bee present in all other text editors for a decade is just being thought up.  This truly is a religious experience!

]]></description>
			<content:encoded><![CDATA[<p>Interesting.  My version of snapshot (a week old) does not seem to have that, but I&#8217;m probably invoking it wrong.  I pobably didn&#8217;t install everything.</p>
<p>It is astonishing that after 22 version of this software, which dates way back in time, it is only now that a very basic function that has bee present in all other text editors for a decade is just being thought up.  This truly is a religious experience!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paul		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532001</link>

		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 11:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532001</guid>

					<description><![CDATA[Yeah - not good - but longlines mode has been superseded by Visual-Line mode in GNU Emacs 23 which doesn&#039;t break up the words. I expect you weren&#039;t the only one to complain :) It&#039;s not released officially yet but it&#039;s usually very stable this near to release and your distro probably has a snapshot package for it.]]></description>
			<content:encoded><![CDATA[<p>Yeah &#8211; not good &#8211; but longlines mode has been superseded by Visual-Line mode in GNU Emacs 23 which doesn&#8217;t break up the words. I expect you weren&#8217;t the only one to complain 🙂 It&#8217;s not released officially yet but it&#8217;s usually very stable this near to release and your distro probably has a snapshot package for it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-532000</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 11:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-532000</guid>

					<description><![CDATA[So, auto-fill ruins the text (by ruins I mean inserts hard returns that I did not put there, or soft returns that won&#039;t go away when the text is copied and pasted) and Longlines mode keeps the text from being ruined (if run by itself)

However, the problem is that longlines mode does not handle the text properly, in that words are broken across lines arbitrarily.  Therefore, even if the text as a stream of date in a buffer or file is not ruined, it is visually annoying. 

]]></description>
			<content:encoded><![CDATA[<p>So, auto-fill ruins the text (by ruins I mean inserts hard returns that I did not put there, or soft returns that won&#8217;t go away when the text is copied and pasted) and Longlines mode keeps the text from being ruined (if run by itself)</p>
<p>However, the problem is that longlines mode does not handle the text properly, in that words are broken across lines arbitrarily.  Therefore, even if the text as a stream of date in a buffer or file is not ruined, it is visually annoying. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paul		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-531999</link>

		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 11:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-531999</guid>

					<description><![CDATA[Hi Greg, if you had auto-&lt;i&gt;fill&lt;/i&gt;-mode on as well as longlines-mode, I&#039;d guess the (real) auto-fill line wrapping would trump the purely visual line wrapping of longlines-mode.

If you&#039;re not sure what&#039;s really there in the buffer, M-x whitespace-mode (or whitespace-newline-mode) will show you. ]]></description>
			<content:encoded><![CDATA[<p>Hi Greg, if you had auto-<i>fill</i>-mode on as well as longlines-mode, I&#8217;d guess the (real) auto-fill line wrapping would trump the purely visual line wrapping of longlines-mode.</p>
<p>If you&#8217;re not sure what&#8217;s really there in the buffer, M-x whitespace-mode (or whitespace-newline-mode) will show you. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-531998</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 10:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-531998</guid>

					<description><![CDATA[My latest test of faith:  I wrote up a long and complex blog pot using autowrap and long lines mode, and when I got done, there were no long lines . I don&#039;t know why that happened

Are modes supposed to randomly go away when they want to?  (There i go blaming the software again...)]]></description>
			<content:encoded><![CDATA[<p>My latest test of faith:  I wrote up a long and complex blog pot using autowrap and long lines mode, and when I got done, there were no long lines . I don&#8217;t know why that happened</p>
<p>Are modes supposed to randomly go away when they want to?  (There i go blaming the software again&#8230;)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Paul		</title>
		<link>https://gregladen.com/blog/2009/03/03/the-one-true-editor/#comment-531997</link>

		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 09 Mar 2009 07:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2009/03/03/the-one-true-editor/#comment-531997</guid>

					<description><![CDATA[Yeah... the Emacs font configuration and ugliness problems are gone in GNU Emacs versions â?¥ 23, thank God: http://golux.podzone.net/piccy (that&#039;s Deja Vu Mono apart from the preview-latex images). You can change font from a proper font dialog now and do per-buffer font scaling (C-x C-Â±). Deja&#039;s got good unicode coverage as you can see if you use e.g. TeX input method (I have it set as the default for C- switching). 

I expect Ediff mode can do that, Marko - it certainly could be made to do it without too much effort. In fact I doubt there is &lt;b&gt;anything&lt;/b&gt; Emacs cannot do or be made to do and it blows every other errm... â??editorâ? out of the water as far as I&#039;m concerned. All that stuff about Unix tool philosophy and kitchen sinks is just some weirdness which some ascetic programmers and system administrators (perhaps justifiably for them) seem to believe. For normal people, having everything there in one place (including such marvels as AUCTeX and calc and org-mode and...), all capable of interacting with each other and being modifiable and extensible with Lisp, is simply invaluable.]]></description>
			<content:encoded><![CDATA[<p>Yeah&#8230; the Emacs font configuration and ugliness problems are gone in GNU Emacs versions â?¥ 23, thank God: <a href="http://golux.podzone.net/piccy" rel="nofollow ugc">http://golux.podzone.net/piccy</a> (that&#8217;s Deja Vu Mono apart from the preview-latex images). You can change font from a proper font dialog now and do per-buffer font scaling (C-x C-Â±). Deja&#8217;s got good unicode coverage as you can see if you use e.g. TeX input method (I have it set as the default for C- switching). </p>
<p>I expect Ediff mode can do that, Marko &#8211; it certainly could be made to do it without too much effort. In fact I doubt there is <b>anything</b> Emacs cannot do or be made to do and it blows every other errm&#8230; â??editorâ? out of the water as far as I&#8217;m concerned. All that stuff about Unix tool philosophy and kitchen sinks is just some weirdness which some ascetic programmers and system administrators (perhaps justifiably for them) seem to believe. For normal people, having everything there in one place (including such marvels as AUCTeX and calc and org-mode and&#8230;), all capable of interacting with each other and being modifiable and extensible with Lisp, is simply invaluable.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
