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
(defmacro magit-redefine-popup (name doc &rest args) | |
"Define a popup command named NAME. | |
See magit-define-popup for a description of the parameters. | |
Unlike with magit-define-popup, changes to the popup definition | |
*will* be reflected upon re-evaluating this form. This is | |
convenient for iterative, interactive development of a | |
magit-popup menu." | |
(let* ((-name (symbol-name name)) |
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
(ns midje-example.mock | |
(:use midje.sweet)) | |
(defn compute [comp-fn] | |
(comp-fn 2 3)) | |
(unfinished mult) | |
;; At compile time... | |
;; #`midje-example.mock/bound-to-mult => #'midje-example.mock/mult |
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 number | |
set nocompatible | |
set wildmenu " Autocomplete menu? | |
set incsearch | |
set hlsearch | |
set encoding=utf-8 |