(defun reglen() “Show region length.” (interactive) (message “Region length=%s” (- (region-end) (region-beginning))))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 274c978e89ca355d1d1ff14da727298a0cf74795 Mon Sep 17 00:00:00 2001 | |
From: Dan Lentz <[email protected]> | |
Date: Wed, 25 Mar 2009 04:50:41 -0400 | |
Subject: [PATCH] new file: README.mkdn | |
--- | |
0 files changed, 0 insertions(+), 0 deletions(-) | |
create mode 100644 README.mkdn | |
diff --git a/README.mkdn b/README.mkdn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq mac-option-key-is-meta nil) | |
(setq mac-command-key-is-meta t) | |
(setq mac-command-modifier 'meta) | |
(setq mac-option-modifier nil) |
(define-key global-map [(control z) ?l] 'org-store-link)
(define-key global-map [(control z) (control l)] 'org-insert-link)
(define-key global-map [(control z) ?a] 'org-agenda)
(global-set-key [f5] 'org-store-link)
(global-set-key [(meta f5)] 'org-insert-link)
(eval-after-load 'org-mode (define-key org-mode-map [(control ?c) ?p] 'orgpan-panel))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; A simple Google Chart wrapper for Common Lisp | |
;;; | |
;;; API reference: http://code.google.com/apis/chart/ | |
;;; | |
;;; WARNING: Incomplete and buggy -- still has much to be done, e.g.: | |
;;; | |
;;; * more thorough testing (that won't be hard...) | |
;;; | |
;;; * handle spaces/newlines appropriately |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; color-theme-comidia Generated with http://color-theme-select.heroku.com/ on Fri Mar 18 2011 20:51:11 GMT-0400 (EDT) | |
;; You can edit the theme name or the documentation by hovering over them. | |
;; Be sure to add your name and email if you want to contribute this theme. | |
;; | |
;; | |
;; | |
;; | |
;; Download | Permalink | Gist | Share color-theme-comidia | Contribute | |
;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(set-macro-character #\⌋ (get-macro-character #\))) | |
(set-macro-character #\⌊ | |
(lambda (stream char) | |
(declare (ignore char)) | |
(prog1 `(floor ,(read stream t nil t)) | |
(let ((char (peek-char t stream t nil t))) | |
(if (char= char #\⌋) | |
(read-char stream t nil t) | |
(error 'reader-error :stream stream)))))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Add Pagination For My Gists To Top | |
// @namespace gistGithubAddPaginationToTop4MyGists | |
// @include /^http:\/\/gist\.github\.com\/mine([?#].*)?$/i | |
// @include http://gist.github.com/mine* | |
// @match http://gist.github.com/mine* | |
// @datecreated 2010-03-21 | |
// @lastupdated 2010-03-21 | |
// @version 0.1 | |
// @author Erik Vergobbi Vold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defclass cons-presentation-mixin () | |
((car-type :accessor cons-presentation-car-type | |
:initarg :car-type) | |
(cdr-type :accessor cons-presentation-cdr-type | |
:initarg :cdr-type)) | |
(:documentation "A presentation for conses.")) | |
(defclass cons-presentation (presentation cons-presentation-mixin) | |
() | |
) |
OlderNewer