This file contains 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
;; Workaround the annoying warnings: | |
;; Warning (mumamo-per-buffer-local-vars): | |
;; Already 'permanent-local t: buffer-file-name | |
(when (and (equal emacs-major-version 24) | |
(equal emacs-minor-version 2)) | |
(eval-after-load "mumamo" | |
'(setq mumamo-per-buffer-local-vars | |
(delq 'buffer-file-name mumamo-per-buffer-local-vars)))) |
This file contains 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
;; Show a notification when a push has been completed | |
(require 'notifications) | |
(defun notify-push (result) | |
(notifications-notify | |
:title "Push complete" | |
:body (format "Org-mobile-push: %s" result) | |
) | |
) | |
;; Fork the work of pushing to mobile |
This file contains 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
cat $1 | column -s, -t | less -#2 -N -S |
This file contains 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/sh | |
# Tag revisions like this: | |
# $ git tag -a -m "Version 0.2" v0.2 HEAD | |
VF=VERSION-FILE | |
DEFAULT_VERSION=UNKNOWN | |
LF=' | |
' |