Guest User

Untitled

a guest
Feb 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. (defun gist-region-or-buffer (&optional private)
  2. "Post either the current region, or if mark is not set, the current buffer as a new paste at gist.github.com
  3. Copies the URL into the kill ring.
  4.  
  5. With a prefix argument, makes a private paste."
  6. (interactive "P")
  7. (condition-case nil
  8. (gist-region (point) (mark) private)
  9. (mark-inactive (gist-buffer private))))
Add Comment
Please, Sign In to add comment