mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
14 lines
302 B
EmacsLisp
14 lines
302 B
EmacsLisp
;;; tools/gist/autoload/gist.el
|
|
|
|
;;;###autoload
|
|
(defun +gist/open-current ()
|
|
(interactive)
|
|
(gist-fetch-current)
|
|
(doom/popup-close-all))
|
|
|
|
;;;###autoload
|
|
(defun +gist/kill-cache ()
|
|
(interactive)
|
|
(delete-directory (expand-file-name "gh" pcache-directory) t)
|
|
(message "gist.el cache cleared"))
|