mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
do not try to set ZDOTDIR in rcfile (ignore). remove spurious log messages
This commit is contained in:
parent
3e4bd458b3
commit
fb7f055449
@ -51,6 +51,7 @@ var ZshIgnoreVars = map[string]bool{
|
||||
"EPOCHREALTIME": true,
|
||||
"SHLVL": true,
|
||||
"TTY": true,
|
||||
"ZDOTDIR": true,
|
||||
"epochtime": true,
|
||||
"langinfo": true,
|
||||
"keymaps": true,
|
||||
|
@ -1540,7 +1540,6 @@ func ResetStatusIndicator(screenId string) error {
|
||||
|
||||
func IncrementNumRunningCmds_Update(update *ModelUpdate, screenId string, delta int) {
|
||||
newNum := ScreenMemIncrementNumRunningCommands(screenId, delta)
|
||||
log.Printf("IncrementNumRunningCmds_Update: screenId=%s, newNum=%d\n", screenId, newNum)
|
||||
AddUpdate(update, ScreenNumRunningCommandsType{
|
||||
ScreenId: screenId,
|
||||
Num: newNum,
|
||||
@ -1549,7 +1548,6 @@ func IncrementNumRunningCmds_Update(update *ModelUpdate, screenId string, delta
|
||||
}
|
||||
|
||||
func IncrementNumRunningCmds(screenId string, delta int) {
|
||||
log.Printf("IncrementNumRunningCmds: screenId=%s, delta=%d\n", screenId, delta)
|
||||
update := &ModelUpdate{}
|
||||
IncrementNumRunningCmds_Update(update, screenId, delta)
|
||||
MainBus.SendUpdate(update)
|
||||
|
Loading…
Reference in New Issue
Block a user