rolandwalker / back-button

Visual navigation through mark rings in Emacs
85 stars 8 forks source link

pulse functionality break when using back-button #5

Open ratheesh opened 9 years ago

ratheesh commented 9 years ago

When back-button mode is enabled, (pulse-momentary-highlight-one-line (point)) call does not work as expected. The line gets highlighted but highlighted color does not disappear until a key is pressed.

This function is used in helm-gtags package

I kindly request you to look into this.

ratheesh commented 9 years ago

I am using emacs v24.4 package.

rolandwalker commented 9 years ago

Hi! I wasn't able to duplicate this so far. If I type the following into a buffer

(load-library "pulse")
(load-library "back-button")
(back-button-mode 1)
(pulse-momentary-highlight-one-line (point))

and type M-xeval-bufferRET, then I see the pulse, and I also see that back-button-mode is enabled in the modeline.

I'll try it again using helm-gtags specifically.