From a8cc68e00b7010d8b5754c957ac4043cc789e50c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 20 Oct 2019 12:16:10 -0400 Subject: [PATCH] Add doom/homepage command Not that the site exists yet, but I'm tired of having all these tidbits of uncommitted code laying about. It'll exist eventually! --- core/autoload/help.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/autoload/help.el b/core/autoload/help.el index 1cd8351a7..4632ddcd1 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -170,6 +170,12 @@ selection of all minor-modes, active or not." (goto-char location)) (user-error "Aborted")))) +;;;###autoload +(defun doom/homepage () + "Open the doom emacs homepage in the browser." + (interactive) + (browse-url "https://doomemacs.org")) + ;;;###autoload (defun doom/help () "Open Doom's user manual."