From cf682658c96bdedb08b11ef6a0d6c24080288449 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Wed, 29 Jul 2015 22:07:07 -0400 Subject: [PATCH] core: home buffer, always go to link line --- core/core-spacemacs-buffer.el | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/core/core-spacemacs-buffer.el b/core/core-spacemacs-buffer.el index 1dfdee359..49445ae8f 100644 --- a/core/core-spacemacs-buffer.el +++ b/core/core-spacemacs-buffer.el @@ -508,12 +508,10 @@ HPADDING is the horizontal spacing betwee the content line and the frame border. (defun spacemacs-buffer/goto-link-line () "Move the point to the beginning of the link line." (interactive) - (when (and dotspacemacs-startup-banner - (not configuration-layer-error-count)) - (with-current-buffer spacemacs-buffer-name - (goto-char (point-min)) - (re-search-forward "Homepage") - (beginning-of-line) - (widget-forward 1)))) + (with-current-buffer spacemacs-buffer-name + (goto-char (point-min)) + (re-search-forward "Homepage") + (beginning-of-line) + (widget-forward 1))) (provide 'core-spacemacs-buffer)