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

Add 'e' keybinding feature to edit current URL

This commit is contained in:
Jansen Price 2020-09-05 13:04:55 -05:00
parent a22a1191f2
commit 298034078e
2 changed files with 7 additions and 0 deletions

View File

@ -295,6 +295,12 @@ func Init() {
// Don't save bottom bar, so that whenever you switch tabs, it's not in that mode
App.SetFocus(bottomBar)
return nil
case "e":
// Letter e allows to edit current URL
bottomBar.SetLabel("[::b]Edit URL: [::-]")
bottomBar.SetText(tabs[curTab].page.URL)
App.SetFocus(bottomBar)
return nil
case "R":
Reload()
return nil

View File

@ -25,6 +25,7 @@ spacebar|Open bar at the bottom - type a URL, link number, search term.
|Typing new:N will open link number N in a new tab
|instead of the current one.
Numbers|Go to links 1-10 respectively.
e|Edit current URL
Enter, Tab|On a page this will start link highlighting.
|Press Tab and Shift-Tab to pick different links.
|Press Enter again to go to one, or Esc to stop.