From 6499fe6ae91d248005abf0f614d0722e776bd8db Mon Sep 17 00:00:00 2001 From: makeworld Date: Mon, 29 Jun 2020 13:39:47 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Add=20Num=20to=20bottomBar=20pro?= =?UTF-8?q?mpt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ display/display.go | 2 +- display/help.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80677b6..37afb55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Alt-Left and Alt-Right for history navigation (#23) +### Changed +- Bottom bar now says `URL/Num./Search: ` when space is pressed + ### Fixed - Actual unicode bullet symbol is used for lists: U+2022 - Performance when loading very long cached pages improved (#26) diff --git a/display/display.go b/display/display.go index 0b2eaca..9bbb4f2 100644 --- a/display/display.go +++ b/display/display.go @@ -230,7 +230,7 @@ func Init() { switch string(event.Rune()) { case " ": // Space starts typing, like Bombadillo - bottomBar.SetLabel("[::b]URL or search: [::-]") + bottomBar.SetLabel("[::b]URL/Num./Search: [::-]") bottomBar.SetText("") App.SetFocus(bottomBar) return nil diff --git a/display/help.go b/display/help.go index 9a69ee8..c416dd1 100644 --- a/display/help.go +++ b/display/help.go @@ -27,7 +27,7 @@ Ctrl-W|Close tab. For now, only the right-most tab can be closed. Ctrl-R, R|Reload a page, discarding the cached version. Ctrl-B|View bookmarks Ctrl-D|Add, change, or remove a bookmark for the current page. -q, Ctrl-Q|Quit +q, Ctrl-Q, Ctrl-C|Quit `) var helpTable = cview.NewTable().