hayamiz / twittering-mode

An Emacs major mode for Twitter
http://twmode.sourceforge.net/
546 stars 92 forks source link

org-twittering - OrgMode integration with twittering #81

Closed danieroux closed 10 years ago

danieroux commented 10 years ago

When org-store-link is invoked on a twittering tweet, the URL and description will be made available to org-capture

Extracted two new functions from existing code and used that to hook into org-mode

cvmat commented 10 years ago

I had written a gist https://gist.github.com/cvmat/3357444 before. It introduces a new type twitter and you can customize the capture template for it as following;

 (add-to-list 'org-capture-templates
              '("T" "tweet" entry (file"~/org/memo.org")
                "* %a %:user-name %:date-timestamp\n %:text\n"))

However, I could not decide the following points.

Now, I think that it can be provided with a function such as twittering-add-org-type. How about it? Do you think the type should be http?

danieroux commented 10 years ago

@cvmat I updated your gist slightly:

Can you include the gist as part of twittering? It will make it easier to find :-)