commit 44b8fcf

delthas  ·  2022-04-15 21:33:08 +0000 UTC
parent c72f7fd
Fix home buffer tooltip

Private messages are now sent to their own buffer, rather than in the
home buffer.
2 files changed,  +3, -3
+2, -2
 1@@ -42,8 +42,8 @@ For information about the configuration format, see *senpai*(5).
 2 The user interface of senpai consists of 4 parts.  Starting from the bottom:
 3 
 4 The *buffer list*, shows joined channels.  The special buffer *home* is where
 5-private messages and server notices are shown.  This list can be put on the left
 6-of the screen with the _chan-column-width_ configuration option.
 7+server notices are shown.  This list can be put on the left of the screen with
 8+the _chan-column-width_ configuration option.
 9 
10 On the row above, the *input field* is where you type in messages or commands
11 (see *COMMANDS*).  By default, when you type a message, senpai will inform
+1, -1
1@@ -9,7 +9,7 @@ import (
2 	"github.com/gdamore/tcell/v2"
3 )
4 
5-const welcomeMessage = "senpai dev build. See senpai(1) for a list of keybindings and commands. Private messages and status notices go here."
6+const welcomeMessage = "senpai dev build. See senpai(1) for a list of keybindings and commands."
7 
8 func (app *App) initWindow() {
9 	app.win.AddBuffer("", "(home)", "")