Added stub for the function to paste region

master
Elis Axelsson 10 years ago
parent 830704a728
commit ff47ecd028
  1. 9
      webpaste.el

@ -32,6 +32,15 @@
;;; Code:
;; The function to paste a region
(defun webpaste-paste-region ()
"Paste selected region to some paste service."
(interactive)
(let ((text (buffer-substring (mark) (point))))
(message text)))
(provide 'webpaste)
;;; webpaste.el ends here

Loading…
Cancel
Save