(let* ((artist (emus-track-artist track))
(album (emus-track-album track))
(title (emus-track-title track))
- (help-str (format "mouse-1, RET: Play '%.30s' (%.20s)" title artist)))
+ (help-str (format "mouse-1, RET: Play '%.30s' (%.20s)" title artist))
+ (field (intern album))) ;Allows easy jumping between albums with cursor.
(when (or prev-track first)
(unless (equal (emus-track-artist prev-track) artist)
(insert-text-button
'action #'emus--click-track
'follow-link t
'help-echo help-str
- 'emus-track track)
- (insert (propertize "\n" 'face 'emus-artist)))
+ 'emus-track track
+ 'field field)
+ (insert (propertize "\n"
+ 'face 'emus-artist
+ 'field field)))
(unless (equal (emus-track-album prev-track) album)
(insert-text-button
(propertize (concat " " album) 'face 'emus-album)
'action #'emus--click-track
'follow-link t
'help-echo help-str
- 'emus-track track)
- (insert (propertize "\n" 'face 'emus-album))))
+ 'emus-track track
+ 'field field)
+ (insert (propertize "\n"
+ 'face 'emus-album
+ 'field field))))
(emus-set-track-browser-pos track (point))
(let ((is-current (equal track emus-current-track)))
(insert-text-button
'action #'emus--click-track
'follow-link t
'help-echo help-str
- 'emus-track track)
+ 'emus-track track
+ 'field field)
(insert (propertize "\n"
'face (if is-current
'emus-track-current
- 'emus-track))))))
+ 'emus-track)
+ 'field field)))))
(defun emus--update-track (track)
"Rerender entry for TRACK in emus browser buffer.