j-delaney / back-to-backspace

https://chrome.google.com/webstore/detail/back-to-backspace/cldokedgmomhbifmiiogjjkgffhcbaec
MIT License
45 stars 14 forks source link

Add shift backspace #16

Closed davidgomes closed 8 years ago

davidgomes commented 8 years ago

Hi, Chrome also used to have the Shift-Backspace functionality. Would you be able to implement this as well?

It just goes forward instead of backward.

tplk commented 8 years ago

@davidgomes isn't it already implemented?

// Go forward in history if the shift key is being held down.
// Go backwards in history if the shift key is not being held down.
history.go( event.shiftKey ? 1 : -1 );

Works for me.

davidgomes commented 8 years ago

Actually it works for me too.