Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am alander on github.
  • I am isomr (https://keybase.io/isomr) on keybase.
  • I have a public key ASD9l-czHUuPgnXGGiWN11IeeyN2BrLJNUcsxO4bl5n7nQo

To claim this, I am signing this object:

@alander
alander / gist:652761
Created October 29, 2010 02:20
Handy keystrokes to change the width of the current frame
; C-x 5 + means "wider", and C-x 5 - means narrower (back to normal, actually)
(global-set-key (kbd "C-x 5 +") '(lambda () (interactive) (set-frame-width (selected-frame) 170)))
(global-set-key (kbd "C-x 5 -") '(lambda () (interactive) (set-frame-width (selected-frame) 120)))
@alander
alander / emacs-nightly.sh
Created October 28, 2010 03:51
build emacs nightly on mac os x
#! /bin/bash
# -*- coding: utf-8 -*-
#
# Create a nightly Emacs build from Git.
#
# © 2008, 2009.
# Author: Ian Eure <ieure@blarg.net>
#
# $Id$