M-x all-things-emacs

Entries Tagged as 'newbie'

Quick Tip: Spaces instead of Tabs

September 30th, 2007 by Ryan McGeary · 7 Comments

Tab characters used as indentation of source code is a pet peeve of mine. Add this to your emacs initialization to make sure all indentation uses spaces instead.

;; I hate tabs!
(setq-default indent-tabs-mode nil)

Now, if you also use tab completion everywhere, someday, you’ll want to actually insert a real <tab> character (ASCII 9), but won’t [...]

[Read more →]

Tags:newbie · quick · tips

Newbie Tip: Visual Emacs Keybinding Cheatsheet

August 27th, 2007 by Ryan McGeary · 1 Comment

For a newcomer to emacs, learning the default set of keybindings can be daunting. There’s no substitute for C-h b (describe-bindings) and C-h k (describe-key), but sometimes it’s just easier to learn visually.

[Read more →]

Tags:newbie · quick · tips

Quick Tip: show-paren-mode

August 7th, 2007 by Rob Christie · 1 Comment

When show-paren-mode is enabled a matching parenthesis is highlighted based on the location of point (i.e., when your cursor is on a parenthesis).
You can tweak the behaviour of this minor mode by adjusting show-paren-style and the show-paren-delay. There are three styles to choose from: parenthesis – shows the matching paren expression – shows the entire [...]

[Read more →]

Tags:newbie · quick · tips

Package Faves: psvn

May 17th, 2007 by Rob Christie · 5 Comments

If you interact with a Subversion version controlled repository and you use emacs, then you are probably already using this package. However, I use this package every day, and if someone was just starting to use emacs, this would be on my short list of packages that must be installed.

psvn mode is similar to pcl-cvs [...]

[Read more →]

Tags:faves · newbie · reviews

IBM Emacs Tutorial, Part I

April 2nd, 2007 by Ryan McGeary · 1 Comment

Michael Stutz recently wrote Part I of a new new series at IBM called Emacs editing environment. The first is Learn the basics of Emacs.

This first tutorial is definitely geared toward the emacs newcomer. There is a lot of overlap with the built-in emacs tutorial (C-h t), but different mediums are good for [...]

[Read more →]

Tags:newbie · news

Newbie Tip: isearch Word Yank

March 26th, 2007 by Ryan McGeary · 3 Comments

Our newbie tips are our way of expressing emacs features we might otherwise take for granted. We hope they help beginners climb the learning curve faster. This particular tip is one that I wish I knew far sooner when I first started using emacs.

Incremental searching with isearch-forward and isearch-backward (C-s and C-r) is [...]

[Read more →]

Tags:isearch · newbie · quick · tips

Newbie Tip: transient-mark-mode

February 20th, 2007 by Ryan McGeary · 5 Comments

Setting a mark (C-SPC) is probably the most frequent command I use besides basic navigation. The mark not only acts as a saved jump-to point, but it also sets the region. A region is what other editors might call a selection. By default, emacs does not highlight the active region, so it [...]

[Read more →]

Tags:newbie · quick · tips

Newbie Tip: y-or-n-p and Function Aliases

February 3rd, 2007 by Ryan McGeary · 3 Comments

Part of the reason we started M-x all-things-emacs was to encourage newcomers to the emacs world. The emacs learning curve is a steep one, and sometimes it’s easy for the more advanced members of the contingent to take some of the basics for granted. This is the first of a series of [...]

[Read more →]

Tags:newbie · tips