Send texmate selection to Quicksilver


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/bin/bash
  2. #
  3. # Sends the current selection text or document (if no selection) to quicksilver
  4. # To use this you must install the "Command Line Tools (qs)" plugin in quicksilver
  5. #
  6. # Create a new bundle command and call it "Send to Quicksilver"
  7. # Set command input to Selection Or Document
  8. # set command output to discard
  9. # set key equivalent (I set mine to command + escape)
  10. # Leave Scope Selector blank
  11.  
  12. cat /dev/stdin | qs

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.