Skip to content

Instantly share code, notes, and snippets.

@peccu
Created September 3, 2012 09:07
Show Gist options
  • Save peccu/3608020 to your computer and use it in GitHub Desktop.
Save peccu/3608020 to your computer and use it in GitHub Desktop.
twittering-modeのうち,つぶやく部分だけを呼び出す.必要に応じてoauth認証もする
(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