Created
September 3, 2012 09:07
-
-
Save peccu/3608020 to your computer and use it in GitHub Desktop.
twittering-modeのうち,つぶやく部分だけを呼び出す.必要に応じてoauth認証もする
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 'twittering-mode) | |
(defun tweet() | |
(interactive) | |
(when | |
(twittering-ensure-preparation-for-api-invocation) | |
(twittering-update-status-from-pop-up-buffer))) | |
(global-set-key (kbd "C-c C-s") 'tweet) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment