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
| key binding | |
| --- ------- | |
| TAB forward-button | |
| (that binding is currently shadowed by another mode) | |
| RET gist-fetch-current | |
| ESC Prefix Command | |
| SPC scroll-up-command | |
| + gist-add-buffer | |
| - gist-remove-file |
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
| ;; | |
| ;; Additional package archives | |
| ;; | |
| (require 'package) | |
| (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) | |
| (add-to-list 'package-archives '("ELPA" . "http://tromey.com/elpa/")) | |
| (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) | |
| (package-initialize) |
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
| object FileMatcher { | |
| private def filesHere = (new java.io.File(".")).listFiles | |
| private def filesMatching(matcher: String => Boolean) = | |
| for (file <- filesHere | |
| if matcher(file.getName)) | |
| yield file | |
| def filesEnding(query: String) = | |
| filesMatching(_.endsWith(query)) |
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
| This is my initial test of gist. | |
| This is an update. | |
| A second update. |
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
| This is my initial test of gist. |