aboutsummaryrefslogtreecommitdiff
path: root/shoshimacs.el
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2022-08-20 12:55:00 -0500
committerGrant Shangreaux <grant@unabridgedsoftware.com>2022-08-20 12:55:11 -0500
commit1a0b623147bda3621241e74670545444c770f883 (patch)
treea34aa924e64f62d6e4ec8c80a76660a013060d4e /shoshimacs.el
parentd5a49f0bbcfeeac32fd669f90e2cfa6bb2384b29 (diff)
Add: bepasty config
Diffstat (limited to 'shoshimacs.el')
-rw-r--r--shoshimacs.el25
1 files changed, 25 insertions, 0 deletions
diff --git a/shoshimacs.el b/shoshimacs.el
index 54e0d84..43d3da9 100644
--- a/shoshimacs.el
+++ b/shoshimacs.el
@@ -173,6 +173,31 @@
(package-install 'srht)
(setq srht-username "shoshin")
+(defun read-file-into-string (f)
+ (with-temp-buffer
+ (insert-file-contents f)
+ (buffer-string)))
+
+(setq cicadas-paste-pw (read-file-into-string "~/.bepasty-key"))
+
+(defun cicadas-paste-current-buffer ()
+ (interactive)
+ (let ((tmpfile
+ (concat "/tmp/" (buffer-name))))
+ (write-region nil nil tmpfile)
+ (let ((url
+ (first (last (butlast
+ (split-string
+ (shell-command-to-string
+ (format "pastebinit -i '%s' -p %s -t '%s' -f text/plain"
+ tmpfile
+ cicadas-paste-pw
+ (buffer-name)))
+ "\n"))))))
+ (delete-file tmpfile)
+ (kill-new url)
+ (message "Pasted to %s (on kill ring)" url))))
+
;;; User Interface
(when (display-graphic-p)
(scroll-bar-mode -1)