diff options
author | Hubert Hirtz <hubert@hirtz.pm> | 2021-04-27 14:41:45 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtz.pm> | 2021-04-27 14:48:48 +0200 |
commit | ef1ca1c2efcab9886d3781193b0cafb552ac8689 (patch) | |
tree | fa9978561c23320bd2155b50c5cc18063005a33a /app.go | |
parent | Revert back to tcell 2.2.0 (diff) |
Add option to disable sending typing notifications
Diffstat (limited to 'app.go')
-rw-r--r-- | app.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |