diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2018-02-20 20:07:37 +0000 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2018-02-20 20:07:37 +0000 |
| commit | adfa1691d75a47777a661d41b7883c57c8ca501c (patch) | |
| tree | 8f93065121a43ea255930729c70d56934c703e3d | |
| parent | 954d4e8eaa61ab7573c591acb90f8f04797ead16 (diff) | |
Navigate to the position too
| -rw-r--r-- | helpful.el | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -414,19 +414,24 @@ or disable if already enabled." (define-button-type 'helpful-buffer-button 'action #'helpful--switch-to-buffer 'buffer nil + 'position nil 'follow-link t 'help-echo "Switch to this buffer") (defun helpful--switch-to-buffer (button) "Navigate to the buffer this BUTTON represents." - (switch-to-buffer (button-get button 'buffer))) + (let ((buf (button-get button 'buffer)) + (pos (button-get button 'position))) + (switch-to-buffer buf) + (goto-char pos))) -(defun helpful--buffer-button (buffer) - "Return a button that opens PATH and puts point at POS." +(defun helpful--buffer-button (buffer pos) + "Return a button that switches to BUFFER and puts point at POS." (helpful--button (buffer-name buffer) 'helpful-buffer-button - 'buffer buffer)) + 'buffer buffer + 'position pos)) (define-button-type 'helpful-customize-button 'action #'helpful--customize @@ -1312,7 +1317,7 @@ OBJ may be a symbol or a compiled function object." (helpful--navigate-button (file-name-nondirectory path) path pos)) (format "defined in buffer %s" - (helpful--buffer-button buf))))) + (helpful--buffer-button buf pos))))) (primitive-p "defined in C source code") (t |
