remove more go warnings

This commit is contained in:
sawka 2023-12-05 10:49:30 -08:00
parent 724a68393a
commit 0ece51e690
3 changed files with 18 additions and 19 deletions

View File

@ -137,7 +137,7 @@ func (t *Tailer) addSessionWatcher(sessionId string) error {
defer t.Lock.Unlock()
if t.Sessions[sessionId] {
return
return nil
}
sdir := t.Gen.SessionDir(sessionId)
err := t.Watcher.Add(sdir)
@ -351,7 +351,6 @@ func (t *Tailer) Run() {
t.Sender.SendPacket(packet.FmtMessagePacket("error in tailer: %v", err))
}
}
return
}
func (t *Tailer) Close() error {

View File

@ -93,14 +93,14 @@ var SetVarNameMap map[string]string = map[string]string{
}
var SetVarScopes = []SetVarScope{
SetVarScope{ScopeName: "global", VarNames: []string{}},
SetVarScope{ScopeName: "client", VarNames: []string{"telemetry"}},
SetVarScope{ScopeName: "session", VarNames: []string{"name", "pos"}},
SetVarScope{ScopeName: "screen", VarNames: []string{"name", "tabcolor", "tabicon", "pos", "pterm", "anchor", "focus", "line"}},
SetVarScope{ScopeName: "line", VarNames: []string{}},
{ScopeName: "global", VarNames: []string{}},
{ScopeName: "client", VarNames: []string{"telemetry"}},
{ScopeName: "session", VarNames: []string{"name", "pos"}},
{ScopeName: "screen", VarNames: []string{"name", "tabcolor", "tabicon", "pos", "pterm", "anchor", "focus", "line"}},
{ScopeName: "line", VarNames: []string{}},
// connection = remote, remote = remoteinstance
SetVarScope{ScopeName: "connection", VarNames: []string{"alias", "connectmode", "key", "password", "autoinstall", "color"}},
SetVarScope{ScopeName: "remote", VarNames: []string{}},
{ScopeName: "connection", VarNames: []string{"alias", "connectmode", "key", "password", "autoinstall", "color"}},
{ScopeName: "remote", VarNames: []string{}},
}
var hostNameRe = regexp.MustCompile("^[a-z][a-z0-9.-]*$")

View File

@ -25,16 +25,16 @@ type BareMetaCmdDecl struct {
}
var BareMetaCmds = []BareMetaCmdDecl{
BareMetaCmdDecl{"cr", "cr"},
BareMetaCmdDecl{"connect", "cr"},
BareMetaCmdDecl{"clear", "clear"},
BareMetaCmdDecl{"reset", "reset"},
BareMetaCmdDecl{"codeedit", "codeedit"},
BareMetaCmdDecl{"codeview", "codeview"},
BareMetaCmdDecl{"imageview", "imageview"},
BareMetaCmdDecl{"markdownview", "markdownview"},
BareMetaCmdDecl{"mdview", "markdownview"},
BareMetaCmdDecl{"csvview", "csvview"},
{"cr", "cr"},
{"connect", "cr"},
{"clear", "clear"},
{"reset", "reset"},
{"codeedit", "codeedit"},
{"codeview", "codeview"},
{"imageview", "imageview"},
{"markdownview", "markdownview"},
{"mdview", "markdownview"},
{"csvview", "csvview"},
}
const (