Mercurial > hg > config
annotate .emacs @ 359:07d01606da84
add a macro for mozbase tests
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Tue, 02 Jul 2013 09:48:45 -0700 | 
| parents | 6004e00b602d | 
| children | ad10f719d160 | 
| rev | line source | 
|---|---|
| 347 | 1 (setq initial-scratch-message ";; scratch ;; | 
| 2 | |
| 3 ") | |
| 4 | |
| 335 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 5 ;; ;; ;; emacs server (what a piece of crap) | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 6 ;; (require 'server) | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 7 ;; (unless (server-running-p) | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 8 ;; (server-start)) | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 9 ;; ;; ;; An error has occurred while loading `/home/jhammel/.emacs': | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 10 ;; ;; ;; Symbol's function definition is void: server-running-p | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 11 ;; ;; ;; To ensure normal operation, you should investigate and remove the | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 12 ;; ;; ;; cause of the error in your initialization file. Start Emacs with | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 13 ;; ;; ;; the `--debug-init' option to view a complete error backtrace. | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 14 | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 15 ;; ;; ;; For information about GNU Emacs and the GNU system, type C-h C-a. | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 16 ;; ;; How to fix: | 
| 
a9d3f1210506
what a piece of crap; disablign for now since i dont use anyway
 Jeff Hammel <jhammel@mozilla.com> parents: 
309diff
changeset | 17 ;; http://stackoverflow.com/questions/9999320/how-to-check-if-a-function-e-g-server-running-p-is-available-under-emacs | 
| 297 | 18 | 
| 19 ;;;; bars | |
| 20 | |
| 21 ;; Turn off the status bar and on the mouse if we're not in a window system | |
| 22 (menu-bar-mode (if window-system 1 -1)) | |
| 23 | |
| 24 ;; no need for a tool bar | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 25 (if (boundp 'tool-bar-mode) (tool-bar-mode 0)) | 
| 297 | 26 | 
| 27 ;; ...or a startup message | |
| 309 | 28 ;; instead, it'd be nice to start with a list of recent files (recentf) | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 29 (setq inhibit-startup-message t) | 
| 297 | 30 | 
| 31 ;; no f-ing backup files | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 32 (setq make-backup-files nil) | 
| 297 | 33 | 
| 34 ;; show trailing whitespace | |
| 35 (setq-default show-trailing-whitespace t) | |
| 36 | |
| 300 | 37 ;;;; ??? no idea | 
| 297 | 38 | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 39 (put 'downcase-region 'disabled nil) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 40 (setq truncate-lines nil) | 
| 297 | 41 (setq truncate-partial-width-windows nil) | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 42 (setq use-file-dialog nil) | 
| 75 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 43 | 
| 280 | 44 ;; make directories when they don't exist | 
| 45 ;; from http://stackoverflow.com/questions/6830671/how-to-make-emacs-create-intermediate-dirs-when-saving-a-file | |
| 46 (add-hook 'before-save-hook | |
| 47 (lambda () | |
| 48 (when buffer-file-name | |
| 49 (let ((dir (file-name-directory buffer-file-name))) | |
| 50 (when (not (file-exists-p dir)) | |
| 51 (make-directory dir t)))))) | |
| 52 | |
| 297 | 53 ;;;; indentation | 
| 75 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 54 | 
| 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 55 ;; python indentation | 
| 120 
339805e00f03
set python spacing back to four, by popular demand
 Jeff Hammel <jhammel@mozilla.com> parents: 
75diff
changeset | 56 (setq python-indent 4) | 
| 
339805e00f03
set python spacing back to four, by popular demand
 Jeff Hammel <jhammel@mozilla.com> parents: 
75diff
changeset | 57 (setq-default py-indent-offset 4) | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 58 (setq python-guess-indent nil) | 
| 75 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 59 | 
| 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 60 ;; javascript indentation: http://www.brgeight.se/downloads/emacs/javascript.el | 
| 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 61 (setq javascript-indent-level 2) | 
| 148 | 62 (setq js-indent-level 2) | 
| 75 
89a64b0d6146
adding indentation for javascript
 Jeff Hammel <jhammel@mozilla.com> parents: 
62diff
changeset | 63 | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 64 (setq-default indent-tabs-mode nil) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 65 (defface extra-whitespace-face '((t (:background "pale green"))) "Used for tabs and such.") | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 66 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 67 (autoload 'doctest-mode "doctest-mode" "doctest editing mode." t) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 68 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 69 (transient-mark-mode 1) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 70 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 71 (put 'upcase-region 'disabled nil) | 
| 297 | 72 | 
| 73 ;;;; line/col #s | |
| 309 | 74 ;;;; Show line and column numbers in the mode line | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 75 (line-number-mode 1) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 76 (column-number-mode 1) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 77 | 
| 309 | 78 | 
| 297 | 79 ;;;; modes | 
| 80 | |
| 81 ;; Bind major editing modes to certain file extensions | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 82 (setq auto-mode-alist (cons '("\\.zcml$" . sgml-mode) auto-mode-alist)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 83 (setq auto-mode-alist (cons '("\\.pt$" . sgml-mode) auto-mode-alist)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 84 (setq auto-mode-alist (cons '("\\.cpt$" . sgml-mode) auto-mode-alist)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 85 (setq auto-mode-alist (cons '("\\.cpy$" . python-mode) auto-mode-alist)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 86 (setq auto-mode-alist (cons '("\\.vpy$" . python-mode) auto-mode-alist)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 87 | 
| 300 | 88 ;; set auto-fill for appropriate modes | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 89 (add-hook 'text-mode-hook 'turn-on-auto-fill) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 90 (add-hook 'sgml-mode-hook 'turn-off-auto-fill) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 91 | 
| 300 | 92 ;; set the grep command....for some reason | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 93 (setq grep-command "grep -liE") | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 94 | 
| 300 | 95 | 
| 96 ;;;; recent history stuff | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 97 (require 'recentf) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 98 (recentf-mode 1) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 99 (setq recentf-max-menu-items 25) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 100 (global-set-key "\C-x\ \C-r" 'recentf-open-files) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 101 | 
| 300 | 102 ;;;; full-steam-ahead-and-damn-the-torpedoes | 
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 103 (defun | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 104 full-steam-ahead-and-damn-the-torpedoes | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 105 (prompt) t) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 106 (defalias 'y-or-n-p | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 107 'full-steam-ahead-and-damn-the-torpedoes) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 108 (defalias 'yes-or-no-p | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 109 'full-steam-ahead-and-damn-the-torpedoes) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 110 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 111 (require 'uniquify) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 112 (setq uniquify-buffer-name-style 'post-forward) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 113 | 
| 300 | 114 ;;;; | 
| 115 | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 116 ;; wheel mouse | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 117 (global-set-key [mouse-4] 'scroll-down) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 118 (global-set-key [mouse-5] 'scroll-up) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 119 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 120 ;; substring buffer switching mode | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 121 (iswitchb-mode 1) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 122 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 123 (global-set-key "\M-g" 'goto-line) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 124 | 
| 297 | 125 ;;;; python | 
| 126 | |
| 0 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 127 ;; (when (load "flymake" t) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 128 ;; (defun flymake-pyflakes-init () | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 129 ;; (let* ((temp-file (flymake-init-create-temp-buffer-copy | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 130 ;; 'flymake-create-temp-inplace)) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 131 ;; (local-file (file-relative-name | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 132 ;; temp-file | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 133 ;; (file-name-directory buffer-file-name)))) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 134 ;; (list "pyflakes" (list local-file)))) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 135 ;; (add-to-list 'flymake-allowed-file-name-masks | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 136 ;; '("\\.py\\'" flymake-pyflakes-init))) | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 137 | 
| 
f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
 k0s <k0scist@gmail.com> parents: diff
changeset | 138 ;; (add-hook 'find-file-hook 'flymake-find-file-hook) | 
| 4 | 139 | 
| 140 (fset 'break "import pdb; pdb.set_trace();\C-a\C-i") | |
| 141 (add-hook 'python-mode-hook | |
| 142 '(lambda () | |
| 143 (local-set-key [(meta ?p) (meta ?p)] 'break))) | |
| 347 | 144 | 
| 145 (fset 'python-file "#!/usr/bin/env python | |
| 146 | |
| 147 ''' | |
| 148 | |
| 149 ''' | |
| 150 | |
| 151 import optparse | |
| 152 import os | |
| 153 import sys | |
| 154 | |
| 155 here = os.path.dirname(os.path.realpath(__file__)) | |
| 156 | |
| 157 def main(args=sys.argv[1:]): | |
| 158 | |
| 159 usage = '%prog [options]' | |
| 160 parser = optparse.OptionParser(usage=usage, description=__doc__) | |
| 161 options, args = options.parse_args(args) | |
| 162 | |
| 163 if __name__ == '__main__': | |
| 164 main()") | |
| 348 
6004e00b602d
new hg file; TODO: incorporate!
 Jeff Hammel <jhammel@mozilla.com> parents: 
347diff
changeset | 165 ;; TODO: take directly from MakeItSo | 
| 347 | 166 | 
| 359 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 167 (fset 'mozbase-test "#!/usr/bin/env python | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 168 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 169 # This Source Code Form is subject to the terms of the Mozilla Public | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 170 # License, v. 2.0. If a copy of the MPL was not distributed with this file, | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 171 # You can obtain one at http://mozilla.org/MPL/2.0/. | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 172 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 173 import os | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 174 import unittest | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 175 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 176 here = os.path.dirname(os.path.abspath(__file__)) | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 177 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 178 class Test____(unittest.TestCase): | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 179 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 180 if __name__ == '__main__': | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 181 unittest.main() | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 182 ") | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 183 | 
| 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 184 | 
| 347 | 185 ;;; TODO | 
| 186 ; - needless to say, zeitgeist integration | |
| 359 
07d01606da84
add a macro for mozbase tests
 Jeff Hammel <jhammel@mozilla.com> parents: 
348diff
changeset | 187 ; - http://pedrokroger.net/2010/07/configuring-emacs-as-a-python-ide-2/ | 
