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
;; Based on omnifocus-capture.el by Ken Case with the following original comment: | |
;; | |
;; To capture tasks from Emacs to OmniFocus using Control-C Control-O, | |
;; drop this script in your emacs load path and add lines like these to | |
;; your .emacs: | |
;; | |
;; (autoload 'send-region-to-omnifocus "omnifocus-capture" "Send region to OmniFocus" t) | |
;; (global-set-key (kbd "C-c C-o") 'send-region-to-omnifocus) | |
;; | |
;; The send-region-to-emacs function has been rewritten as follows: |
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
require 'formula' | |
class WkhtmltopdfQt < Formula | |
# This is the latest staging branch commit, dated 6 JAN 2012. | |
url 'https://qt.gitorious.org/qt/wkhtmltopdf-qt/archive-tarball/6053b687d24956d0a7eac21a015172b29cf0f451' | |
sha1 '3a48649a2082ced3153bd2841d1e8a94a5e74a4f' | |
version '6053b68' | |
end | |
class Wkhtmltopdf < Formula |