<?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>keyboard shortcuts &#8211; Diary of an Emacs tragic</title>
	<atom:link href="https://emacstragic.net/tag/keyboard-shortcuts/feed/" rel="self" type="application/rss+xml" />
	<link>https://emacstragic.net</link>
	<description>Jason Lewis</description>
	<lastBuildDate>Wed, 22 May 2013 02:33:32 +0000</lastBuildDate>
	<language>en-AU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://emacstragic.net/wp-content/uploads/2018/12/cropped-jason-lewis-profile-picture-square-150x150.jpg</url>
	<title>keyboard shortcuts &#8211; Diary of an Emacs tragic</title>
	<link>https://emacstragic.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">38469313</site>	<item>
		<title>Emacs: yank a line multiple times from the kill ring</title>
		<link>https://emacstragic.net/uncategorized/emacs-yank-multiple-times-from-the-kill-ring/</link>
					<comments>https://emacstragic.net/uncategorized/emacs-yank-multiple-times-from-the-kill-ring/#comments</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Wed, 22 May 2013 02:33:32 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[macros]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=806</guid>

					<description><![CDATA[Today I needed to copy a line multiple times in emacs. I needed 8 copies, but how to do that in emacs short of pressing C-y to yank 8 times? My initial guess was to try C-u 8 C-y but that yanks the 8th item from the kill ring. Fuco on #emacs supplied the awesome [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Today I needed to copy a line multiple times in emacs. I needed 8 copies, but how to do that in emacs short of pressing <kbd>C-y</kbd> to yank 8 times? My initial guess was to try <kbd>C-u 8 C-y</kbd> but that yanks the 8th item from the kill ring.<br />
Fuco on #emacs supplied the awesome answer:<br />
<kbd>F3 C-y C-8 F4</kbd><br />
So what does that do? <kbd>F3</kbd>starts recording a macro, <kbd>C-y</kbd>yanks the line, then within the macro itself you can add a numeric argument of 8 using <kbd>C-8</kbd>. End recording of the macro with <kbd>F4</kbd>. Emacs then runs the macro 8 times. Recall that pressing F4 after ending recording of the macro runs the macro.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/emacs-yank-multiple-times-from-the-kill-ring/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">806</post-id>	</item>
		<item>
		<title>Edit a regex search string in Emacs</title>
		<link>https://emacstragic.net/uncategorized/edit-a-regex-search-string-in-emacs/</link>
					<comments>https://emacstragic.net/uncategorized/edit-a-regex-search-string-in-emacs/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Wed, 09 Jan 2013 13:13:11 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[search]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=624</guid>

					<description><![CDATA[If you are writing a complex regex search in emacs and need to edit the string, arrow keys takes you out of the search. M-e allows you to really edit the string.]]></description>
										<content:encoded><![CDATA[<p>If you are writing a complex regex search in emacs and need to edit the string, arrow keys takes you out of the search. M-e allows you to really edit the string.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/edit-a-regex-search-string-in-emacs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">624</post-id>	</item>
		<item>
		<title>The Mark Ring in emacs</title>
		<link>https://emacstragic.net/uncategorized/the-mark-ring-in-emacs/</link>
					<comments>https://emacstragic.net/uncategorized/the-mark-ring-in-emacs/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Sun, 28 Oct 2012 12:37:19 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=584</guid>

					<description><![CDATA[Each time you mark with C-&#60;SPC&#62;, Emacs saves the mark in the mark ring. You can step back through your mark ring with C-u C-&#60;SPC&#62;. You can swap point and mark with C-x C-x.]]></description>
										<content:encoded><![CDATA[<p>Each time you mark with <code>C-&lt;SPC&gt;</code>, Emacs saves the mark in the mark ring.<br />
You can step back through your mark ring with <code>C-u C-&lt;SPC&gt;</code>.<br />
You can swap point and mark with <code>C-x C-x</code>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/the-mark-ring-in-emacs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">584</post-id>	</item>
		<item>
		<title>Re-reading the emacs tutorial</title>
		<link>https://emacstragic.net/uncategorized/re-reading-the-emacs-tutorial/</link>
					<comments>https://emacstragic.net/uncategorized/re-reading-the-emacs-tutorial/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Wed, 17 Oct 2012 11:10:20 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=567</guid>

					<description><![CDATA[It came upon me to re-read the emacs tutorial. Last time I read it was probably about 17 years ago. Things might have changed since then. I picked up two things: C-/ is undo and is equivalent to C-_ C-h c gives you brief help on a keyboard shortcut. I was using C-h k but [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It came upon me to re-read the emacs tutorial. Last time I read it was probably about 17 years ago. Things might have changed since then.<br />
I picked up two things:<br />
<code>C-/</code> is undo and is equivalent to <code>C-_</code><br />
<code>C-h c</code> gives you brief help on a keyboard shortcut. I was using <code>C-h k</code> but that opens a new window which can be annoying sometimes.<br />
<code>C-h t</code> takes you to the tutorial.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/re-reading-the-emacs-tutorial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">567</post-id>	</item>
		<item>
		<title>Swap Registers in emacs calc</title>
		<link>https://emacstragic.net/uncategorized/swap-registers-in-emacs-calc/</link>
					<comments>https://emacstragic.net/uncategorized/swap-registers-in-emacs-calc/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Sun, 14 Oct 2012 23:14:56 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[calc]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=560</guid>

					<description><![CDATA[&#60;TAB&#62; to swap the contents of the last two registers in calc.]]></description>
										<content:encoded><![CDATA[<p><code>&lt;TAB&gt;</code> to swap the contents of the last two registers in calc.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/swap-registers-in-emacs-calc/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">560</post-id>	</item>
		<item>
		<title>emacs keyboard macros</title>
		<link>https://emacstragic.net/uncategorized/emacs-keyboard-macros/</link>
					<comments>https://emacstragic.net/uncategorized/emacs-keyboard-macros/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Fri, 12 Oct 2012 03:42:47 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=551</guid>

					<description><![CDATA[If you haven&#8217;t explored the power of keyboard macros in emacs, you should. You only need to remember a few keys to get going: &#60;F3&#62; Start recording a macro &#60;F4&#62; End recording a macro C-x e to repeat the macro Give it a go!]]></description>
										<content:encoded><![CDATA[<p>If you haven&#8217;t explored the power of keyboard macros in emacs, you should.<br />
You only need to remember a few keys to get going:</p>
<pre>&lt;F3&gt; Start recording a macro
&lt;F4&gt; End recording a macro
C-x e to repeat the macro
</pre>
<p>Give it a go!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/emacs-keyboard-macros/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">551</post-id>	</item>
		<item>
		<title>Select what you typed rather than the completion in ido-mode</title>
		<link>https://emacstragic.net/uncategorized/select-what-you-typed-rather-than-the-completion-in-ido-mode/</link>
					<comments>https://emacstragic.net/uncategorized/select-what-you-typed-rather-than-the-completion-in-ido-mode/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Tue, 25 Sep 2012 00:18:13 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[ido]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=507</guid>

					<description><![CDATA[Sometimes you don&#8217;t want the completion that ido is offering me in Emacs, for instance when trying to create a temporary buffer C-x C-b sometempbuffername. C-j will to get ido to accept what you typed rather than the completion.]]></description>
										<content:encoded><![CDATA[<p>Sometimes you don&#8217;t want the completion that ido is offering me in Emacs, for instance when trying to create a temporary buffer <code>C-x C-b sometempbuffername</code>. <code>C-j</code> will to get ido to accept what you typed rather than the completion.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/select-what-you-typed-rather-than-the-completion-in-ido-mode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">507</post-id>	</item>
		<item>
		<title>Keyboard shortcut to un-minimise a window in OS X</title>
		<link>https://emacstragic.net/uncategorized/keyboard-shortcut-to-un-minimie-a-window-in-os-x/</link>
					<comments>https://emacstragic.net/uncategorized/keyboard-shortcut-to-un-minimie-a-window-in-os-x/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Sat, 25 Aug 2012 03:03:49 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=382</guid>

					<description><![CDATA[It&#8217;s a bit fiddly but it can be done. Cmd+m to the item you want to un-minimise, then while still holding cmd, press Option. Release Cmd and then finally release Option.]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s a bit fiddly but it can be done.<br />
Cmd+m to the item you want to un-minimise, then while still holding cmd, press Option. Release Cmd and then finally release Option.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/keyboard-shortcut-to-un-minimie-a-window-in-os-x/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">382</post-id>	</item>
		<item>
		<title>Cmd+m to Minimise a window in OS X</title>
		<link>https://emacstragic.net/uncategorized/cmdm-to-minimize-a-window-in-os-x/</link>
					<comments>https://emacstragic.net/uncategorized/cmdm-to-minimize-a-window-in-os-x/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Sat, 25 Aug 2012 02:59:45 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=380</guid>

					<description><![CDATA[Cmd+m to minimise a window in OS X]]></description>
										<content:encoded><![CDATA[<p>Cmd+m to minimise a window in OS X</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/cmdm-to-minimize-a-window-in-os-x/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">380</post-id>	</item>
		<item>
		<title>Insert a new heading after numbered list in org-mode</title>
		<link>https://emacstragic.net/uncategorized/insert-a-new-heading-after-numbered-list-in-org-mode/</link>
					<comments>https://emacstragic.net/uncategorized/insert-a-new-heading-after-numbered-list-in-org-mode/#respond</comments>
		
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Tue, 21 Aug 2012 04:59:57 +0000</pubDate>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[org-mode]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<guid isPermaLink="false">http://emacstragic.net/?p=373</guid>

					<description><![CDATA[In org-mode in emacs, M-&#60;RET&#62; will add either a new heading or if your insertion point is between a list item and a heading, it will add a new list item. This is not always desirable. To add a new heading try C-U M-&#60;RET&#62;. I only discovered this as I got frustrated with org-mode insisting [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In org-mode in emacs, <code>M-&lt;RET&gt;</code> will add either a new heading or if your insertion point is between a list item and a heading, it will add a new list item. This is not always desirable. To add a new heading try <code>C-U M-&lt;RET&gt;</code>.<br />
I only discovered this as I got frustrated with org-mode insisting on adding an item to the list rather than creating a new heading. The emacs way around problems like this is to prefix the command with <code>C-U</code> to make it do something slightly different.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://emacstragic.net/uncategorized/insert-a-new-heading-after-numbered-list-in-org-mode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">373</post-id>	</item>
	</channel>
</rss>
