branch: externals/do-at-point commit 70528787202286921de317d4dc2b1d32c568537d Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Add key to clone git repositories into /tmp/ --- do-at-point.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/do-at-point.el b/do-at-point.el index e932028cf0..63e4b9bbfe 100644 --- a/do-at-point.el +++ b/do-at-point.el @@ -146,6 +146,8 @@ of this variable.") (?b "Browse" ,#'browse-url) (?d "Download" ,#'(lambda (url) (start-process "*Download*" nil "wget" "-q" "-c" url))) + (?G "Git" ,#'(lambda (url) + (start-process "*Git*" nil "git" "clone" url "/tmp/"))) (?e "eww" ,#'eww-browse-url)) (number (?* "Calc" ,(lambda () (calc-embedded '(t)))))