Xah Emacs Blog Archive 2012-01

Emacs on Goole Plus is Useful

Google+ is actually quite useful. Blogs is going the ways of dinosaur. In social networks, you can write, interact with people, immediately, post pictures, hangout (real-time text chat, voice chat, video chat). And it's all much easier than running a blog. If you follow web tech communities (For example, TechCrunch, etc.), you know that death of blogs have been written on the wall for a few years. With few exceptions, such as professional blogger. (for a fun intro of Google Plus, see: What is Google Plus and Google Plus Songs (humor).)

Anyway, i wanted to say that running a emacs page on Google Plus have already been useful to me, even just after a few days. I learned emacs tips. Here's today's post.

Some slightly advanced emacs tips.

(1) I just learned about Keyboard Macro Ring today after 10+ years emacs using. (Thanks to Jorge A Alfaro Murillo.)

(2) A info doc node in emacs can be referenced by a elisp expression. For example: (info "(emacs) Keyboard Macro Ring"). Put cursor at end of paren then call eval-last-sexp 【Ctrl+x Ctrl+e】. That'll take you to the emacs doc. The argument to info is string of the node's name.

(3) When browsing emacs info doc inside emacs, you can get the node's name by calling “Info-copy-current-node-name” 【c】.

keyboard macro is a time saver. If you don't know the basics, see: Emacs: Keyboard Macro.

My emacs Google Plus and Twitter pages can be found at: Xah Lee Feeds. Please Subscribe! I will still write blogs. But it's more for heavy weight tutorials, and will be focused on elisp. (because, after a few years, all emacs tips all seem to be repetitions) Brief practical daily tips goes to [ https://twitter.com/ErgoEmacs ] and [ErgoEmacs Google Plus https://plus.google.com/113859563190964307534/]. Thank you for reading.

My Emacs Online Feeds

For Twitter users, now all my emacs related tweets will be from [ https://twitter.com/ErgoEmacs ] . This way, those who just want emacs tips can stay focused.

For Google Plus users, you might join [Goole Plus emacs page https://plus.google.com/113859563190964307534/posts]. There, i post one or two short emacs tip a day.

For a complete list of feeds of available topics, please see: Subscribe to XahLee.org Site Feed.

Thank you very much for reading!

ErgoEmacs Logo

Xah's Emacs Tutorial Update 2012-01-20

I have a new version of my emacs tutorial ready.

If you've bought it before, please just email to Xah@XahLee.org with subject “emacs tutorial upgrade”. I'll email you the download location. Sorry i don't have a automatic update system. So just send the email please if you would like the updated version.

If you haven't bought it, you can get it for just $10. See: Buy Xah Emacs Tutorial. As far as i know it's more complete and detailed tutorial than any emacs book, printed or not, especially the elisp section.

Thank you for support!

Emacs Tip: a Hotkey for “repeat-complex-command”

There's a emacs command repeat-complex-command.

I actually never used it. But in a recent post by Dan Espen (Source groups.google.com), it seems useful.

To make it useful, you should give it a easy hotkey, such as F5.

I'm already starting to use it and found it useful.

Here's why it's useful. In many emacs commands, after you call the command, you have to give arguments. For example, the query-replace. To do the same replacement again, you have to call it again, then use to go back to previous arg, Enter, then same for replacement.

but with repeat-complex-command, you don't have to input the args again.

In some ancient keyboard such as Sun Microsystem Type 6 Keyboard, there's a key labeled “Again” that is bound to repeat-complex-command. But that key doesn't exist on PC keyboard today. So, you can bind it to F5 for example, or a single key on the number pad.

If you don't know how to set keys, see: Emacs Keys: Define Key.

Emacs Page on Goole Plus, Today's Tip: Hotkeys

i started a Google Plus emacs stream at https://plus.google.com/113859563190964307534/ . You might want to join. Here's today's post.

in emacs, once you got on the train and know all the basic concepts, there's 1 most important aspect of increasing efficiency. That is, keyboard shorts (keybindings).

emacs has 3k commands out of the box. Everything is a command, including when you type “a” (self-insert-command). For most frequently used commands, there's a key assigned for it.

by default emacs has 1.3k keybindings!

If we take away ancient impractical ones (for obsolete lisp keyboards), there are few hundred keybindings that are actually useful. Most of us probably use around a hundred or 2.

ok. what i want to say is that for daily operation, assigning keys to commands is probably the most useful in creasing your productivity. Emacs is too big. Everyone has different set of commands that each use frequently. So, if you find yourself typing Meta+x to call a particular command often in past weeks, it's time to give it a hotkey! (if it doesn't already have one; or if you find yourself bending your fingers on the default key sequence.)

All your F1F12 should be used. And some of those Ctrl+x Ctrl+ and Ctrl+c Ctrl+ you use often probably should have a shorter key.

if you don't know how to set keys, see:

Emacs Keys: Define Key

here's related tips on keys

https://plus.google.com/113859563190964307534/posts/jM4DVDKybNN

List Matching Lines in Emacs

learned 2 new commands from a emacs hacker friend Jon Snader (jcs): multi-occur and multi-occur-in-matching-buffers.

See his blog about several ways of listing matching lines:

there, he covered several ways to list matching lines in current buffer or existing buffers.

if you are new to emacs, you might think “i'll just call unix grep; one less thing to learn”. Actually, the emacs commands are much more convenient. I use them several times everyday for past years.

if you want to know the ways to find matching lines in files (as opposed to already opened files), see also: Emacs: Search Text in Directory.

Emacs Lisp: Testing Equality of Symbol Variables

elisp manual System Environment (ELISP Manual) says the var system-type's value is a symbol. However, why does the following work?

(string-equal system-type "windows-nt")

It appears, any symbol can be tested as if it is a string. For example:

(string-equal 'x 'x) ; ⇒ t
(string-equal 'x 'y) ; ⇒ nil

(setq myVar 'tt )
(string-equal myVar "tt") ; ⇒ t

[Ted Zlatanov https://plus.google.com/111144617801417828929/about], a emacs dev, comes to the rescue on the why!

From the docstring:

string-equal is a built-in function in `C source code'.

(string-equal S1 S2)

Return t if two strings have identical contents.
Case is significant, but text properties are ignored.
Symbols are also allowed; their print names are used instead.

Emacs: Open File in External App 🚀

Emacs: Getting Environment Variable When Launching Emacs from GUI

How to get emacs to inherit environment variables from desktop?

On Windows, you need to set them in Registry. You can do that using command line (setx in “cmd.exe”).

[see Windows Environment Variable Tutorial]

On Mac, you need to set a file ~/.MacOSX/environment.plist.

thx to [Adam Jiang https://plus.google.com/116215190617208609872/about] for asking.

There's a subword-mode that lets you move by camelCase. New in emacs 23, but isn't mentioned in emacs NEWS file. See: Source debbugs.gnu.org bug#6614

Emacs Pinky and RSI

someone on stackoverflow is asking about how to avoid the emacs pinky. See: Source stackoverflow.com

the guy already developed emacs pinky.

Note that this is quite a frequently asked question. People ask about it year round all over. On Reddit, Hacker News, Quara, StackOverflow …, and on lots personal blogs. Many already got RSI. Here's a example of another post about it: Source superuser.com.

On StackOverflow itself, the topics comes up frequently. Sometimes in the name of “what's the best emacs keyboard”.

Here's my take, old article but popular: How to Avoid Emacs Pinky.

This article is probably one of the top ten most valuable in my ~300 HTML pages emacs/elisp tutorial: Emacs Lisp: Write a Major Mode for Syntax Coloring.

Updated: Emacs Lisp: load, load-file, autoload

Updated with new code: Emacs Lisp: URL to HTML Link + Date.

Updated: Max Number of Simultaneous Key-Press (N-key Rollover, NKRO, Ghosting) . This is relevant to emacs if you define Hyper and Super. See bottom of the article.

2 Songs for Emacs Hacking

I must offer you emacs coders 2 songs today. The first one is Pulse. Let the tranquil beat accompany you in your hackathon.

Now, the second song i offer is Information High. This is when you are hyper, such as emacs's Hyper key. When you are high. When your thoughts run faster can you can type.

Updated: Guide to Keyboard Key Switch Mechanisms.