Skip to content

Instantly share code, notes, and snippets.

@clojens
Created January 9, 2015 22:53
Show Gist options
  • Save clojens/7bdd9d8741c1b00489e1 to your computer and use it in GitHub Desktop.
Save clojens/7bdd9d8741c1b00489e1 to your computer and use it in GitHub Desktop.

Revisions

  1. clojens created this gist Jan 9, 2015.
    9 changes: 9 additions & 0 deletions lt.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    javascript:(function() {
    function se(d) {
    return d.selection ? d.selection.createRange().text : d.getSelection()
    }
    s = se(document);
    for (i=0; i<frames.length && !s; i++) s = se(frames[i].document);
    if (!s || s=='') s = prompt('Enter%20search%20terms%20for%20Light%20Table','');
    open('https://github.com/LightTable/LightTable' + (s ? '/search?utf8=%E2%9C%93&q=' + encodeURIComponent(s) : '')).focus();
    })();