From ef1ca1c2efcab9886d3781193b0cafb552ac8689 Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Tue, 27 Apr 2021 14:41:45 +0200 Subject: Add option to disable sending typing notifications --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app.go') diff --git a/app.go b/app.go index 13d77ab..c30c3ea 100644 --- a/app.go +++ b/app.go @@ -567,7 +567,7 @@ func (app *App) notifyHighlight(buffer, nick, content string) { // typing sends typing notifications to the IRC server according to the user // input. func (app *App) typing() { - if app.s == nil { + if app.s == nil || app.cfg.NoTypings { return } buffer := app.win.CurrentBuffer() -- cgit v1.2.3