1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-15 19:15:24 +00:00

Number keys for links - fixes #47

This commit is contained in:
makeworld 2020-07-19 11:27:39 -04:00
parent aa4edc4344
commit cfc528d311
2 changed files with 14 additions and 0 deletions

View File

@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- <kbd>Tab</kbd> now also enters link selecting mode, like <kbd>Enter</kbd> (#48)
- Number keys can be pressed to navigate to links 1 through 10 (#47)
### Fixed
- You can't change link selection while the page is loading

View File

@ -317,6 +317,19 @@ func Init() {
tabs[curTab].pageDown()
return nil
}
// Number key: 1-9, 0
i, err := strconv.Atoi(string(event.Rune()))
if err == nil {
if i == 0 {
i = 10 // 0 key is for link 10
}
if i <= len(tabs[curTab].page.Links) && i > 0 {
// It's a valid link number
followLink(tabs[curTab], tabs[curTab].page.Url, tabs[curTab].page.Links[i-1])
return nil
}
}
}
}
// All the keys and operations that can work while a tab IS loading