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
| ;;; | |
| ;; Run checkpatch.pl if we can | |
| ;; | |
| (defvar magit-checkpatch-script nil | |
| "Path to local checkpatch script, if it exists.") | |
| (make-variable-buffer-local 'magit-checkpatch-script) | |
| (put 'magit-checkpatch-script 'permanent-local t) | |
| ;; Match checkpatch.pl output | |
| (add-to-list |
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
| (defvar mark-list-mode-map | |
| (let ((map (make-sparse-keymap))) | |
| (set-keymap-parent map tabulated-list-mode-map) | |
| (define-key map (kbd "RET") 'mark-list-visit-buffer) | |
| (define-key map "\C-m" 'mark-list-visit-buffer) | |
| (define-key map (kbd "d") 'mark-list-delete-mark) | |
| map) | |
| "Local keymap for `mark-list-mode-mode' buffers.") | |
| (defvar mark-list-current-mark-list nil |
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
| ;;; yasnippet-modeline.el --- Update mode-line with potential YASnippet keywords | |
| ;; Copyright (C) 2013 Alex Bennée | |
| ;; Author: Alex Bennée <alex@bennee.com> | |
| ;; Maintainer: Alex Bennée <alex@bennee.com> | |
| ;; Version: 0.01 | |
| ;; Homepage: https://gist.github.com/4664006 | |
| ;; This file is not part of GNU Emacs. |
NewerOlder