This is part one of a two-part series. Here we’ll discuss some straight forward options for maximizing and resizing the emacs window on startup. In part two, we’ll explore a more advanced alternative. I like to maximize my emacs window (aka frame) to fit the entire screen when I really want to focus on what [...]
Entries from January 2007
Maximize on Startup, Part 1
January 29th, 2007 by Ryan McGeary · 12 Comments
Tags:elisp · osx · tips · windows · x
Keyboard Macros in the Wild #1
January 26th, 2007 by Rob Christie · 5 Comments
This is the first in a series of real world uses of emacs keyboard macros. Emacs macros are normally mentioned as a powerful feature of emacs, but many times I find the examples that are given are more academic in nature and don’t drive home their usefulness. These posts will show examples of macros “in [...]
Find Lost Neurons
January 23rd, 2007 by Ryan McGeary · 2 Comments
After years of emacs usage, sometimes I feel like my fingers get ahead of me. The esoteric set of key combinations are an extension of my subconscious. Maybe my cerebellum short circuits the impulses from my frontal lobe, but when I’m asked how I perform a particular task in emacs, often I cannot answer without [...]
Tags:tips
Indent Whole Buffer
January 17th, 2007 by Rob Christie · 6 Comments
I use this function almost daily. Why? Well, it’s because too many developers use editors that muck the alignment of the source. 1 2 3 4 5 6 (defun iwb () "indent whole buffer" (interactive) (delete-trailing-whitespace) (indent-region (point-min) (point-max) nil) (untabify (point-min) (point-max))) Open a file, M-x iwb, save, commit, and edit happily. I can’t [...]
Emacs on Windows
January 17th, 2007 by Ryan McGeary · No Comments
I was going to provide a follow-up to my Emacs on Mac OS X post, but for Windows hackers. It turns out that Derek Slager beat me to it and did a great job. Check out his description of how to Install Emacs on Windows. In addition, he does a fine job of explaining how [...]
Emacs on Mac OS X
January 13th, 2007 by Ryan McGeary · 12 Comments
Like many, I am a recent Mac OS X convert. I left Windows about 9 months ago and haven’t looked back. Upon switching, I found several different emacs distributions. While each has its own strengths and weaknesses, only Carbon Emacs made the cut. Here’s why:
Stevey Test
January 12th, 2007 by Rob Christie · No Comments
Some how I missed Steve Yegge’s Blog Rants until the fall of last year. My only excuse is that I have been head down on a project (the article initially came out in early 2005; I don’t know how I missed it). Effective Emacs, 10 Specific Ways To Improve Your Emacs Productivity is a great [...]
Tags:misc
Hello World
January 12th, 2007 by Rob Christie · No Comments
We’d like to introduce a small blog focused on “the one true editor.” I use emacs daily. My intent for this blog is initially the following: Provide links to recent emacs happenings. As an emacs user I feel like I browse different sites and blogs, and find useful information in various nooks and crannies of [...]