1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-21 19:35:23 +00:00
amfora/display/history.go
Sotiris Papatheodorou 4452fcfec6
Add option to automatically follow redirects (#75)
Co-authored-by: makeworld
2020-08-27 18:55:42 -04:00

26 lines
513 B
Go

package display
// applyHist is a history.go internal function, to load a URL in the history.
func applyHist(t *tab) {
handleURL(t, t.history.urls[t.history.pos], 0) // Load that position in history
t.applyAll()
}
func histForward(t *tab) {
if t.history.pos >= len(t.history.urls)-1 {
// Already on the most recent URL in the history
return
}
t.history.pos++
go applyHist(t)
}
func histBack(t *tab) {
if t.history.pos <= 0 {
// First tab in history
return
}
t.history.pos--
go applyHist(t)
}