This builds pentadactl on Ubuntu in a simple './build-pentadactyl
'. I use it since daily builds have been sporadic.
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
; courtesy of Gordon Gustafson on StackOverflow | |
; originally posted 2014-03-15 | |
; http://stackoverflow.com/questions/18102004/emacs-evil-mode-how-to-create-a-new-text-object-to-select-words-with-any-non-sp | |
(defmacro define-and-bind-text-object (key start-regex end-regex) | |
(let ((inner-name (make-symbol "inner-name")) | |
(outer-name (make-symbol "outer-name"))) | |
`(progn | |
(evil-define-text-object ,inner-name (count &optional beg end type) | |
(evil-regexp-range count beg end type ,start-regex ,end-regex t)) |
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
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
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
;;; https://lists.ourproject.org/pipermail/implementations-list/2012-February/001513.html | |
(add-to-list 'load-path "~/programmingStuff/evil/") | |
(require 'evil) | |
;; remove all keybindings from insert-state keymap | |
(setcdr evil-insert-state-map nil) | |
;; but [escape] should switch back to normal state | |
(define-key evil-insert-state-map [escape] 'evil-normal-state) | |
(define-key evil-insert-state-map (kbd "jk") 'evil-normal-state) | |
(define-key evil-insert-state-map (kbd "jj") 'insert-jay) |