CmdUtils.CreateCommand({
  name: "longreply",
  takes: {"a selection of text": noun_arb_text},
  preview: "Turns your text into a URL to share.",
  execute: function( urlToShorten ) {
    var baseUrl = "http://a.longreply.com/api/save/";
    var params = {message: urlToShorten.text};
    jQuery.post( baseUrl, params, function( Reply ) {
      CmdUtils.setSelection( Reply );
    })
  }
})
