Skip to content

Instantly share code, notes, and snippets.

@bsoist
Created August 8, 2013 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsoist/6186807 to your computer and use it in GitHub Desktop.
Save bsoist/6186807 to your computer and use it in GitHub Desktop.
My tweeting verbs for Fargo
tweetThis: function() {
var text = op.getLineText();
bsoistVerbs.goTweet(text,null);
},
tweetBlog: function() {
var text = op.getLineText();
var link = op.getCursorUrl();
bsoistVerbs.goTweet(text,link);
},
tweetLink: function() {
var text = op.getLineText();
var link = op.attributes.getOne("url");
bsoistVerbs.goTweet(text,link);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment