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/minimalist implementation of some of Hydra (github:abo-abo/hydra) functionality | |
| ;;; This code is in the public domain. | |
| (defun my-make-universal-argument-map-insinuator (keymap) | |
| (let ((name (symbol-name (cl-gensym "my-mini-hydra-universal-argument-insinuator-"))) | |
| (de-insinuator (cl-gensym))) | |
| ;; the code below relies on `lexical-binding' to capture the free variables in `lambda' | |
| (fset de-insinuator (lambda () | |
| (let* ((vec (this-command-keys-vector)) | |
| (key (if (> (length vec) 0) | |
| (vector (aref vec (1- (length vec)))) |
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
| #!/bin/bash | |
| # vi: ts=4:sw=4:et | |
| # | |
| # NINETEEN.SH | |
| # This script allows you to install/update Enlightenment 19 git version on | |
| # Ubuntu 14.04 LTS or Debian wheezy/sid, or remove E19 git from your system. | |
| # Originally from: http://ubuntuforums.org/showthread.php?t=2203190 | |
| # By: Philippe J. Guillaumie (batden AT sfr DOT fr). | |
| # Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com). | |
| # |