You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line always return true if locations are the same while switching buffers.
Comparing (marker-buffer imenu-list--last-location) and (marker-buffer location) might solve this problem.
My workaround is add the following code. (add-hook 'buffer-list-update-hook '(lambda () (setq imenu-list--last-location nil)))
This will force imenu-list--last-location different from location.
The text was updated successfully, but these errors were encountered:
imenu-list/imenu-list.el
Line 490 in 4600873
This line always return true if locations are the same while switching buffers.
Comparing
(marker-buffer imenu-list--last-location)
and(marker-buffer location)
might solve this problem.My workaround is add the following code.
(add-hook 'buffer-list-update-hook '(lambda () (setq imenu-list--last-location nil)))
This will force
imenu-list--last-location
different fromlocation
.The text was updated successfully, but these errors were encountered: