mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48: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,
|
"EPOCHREALTIME": true,
|
||||||
"SHLVL": true,
|
"SHLVL": true,
|
||||||
"TTY": true,
|
"TTY": true,
|
||||||
|
"ZDOTDIR": true,
|
||||||
"epochtime": true,
|
"epochtime": true,
|
||||||
"langinfo": true,
|
"langinfo": true,
|
||||||
"keymaps": true,
|
"keymaps": true,
|
||||||
|
@ -1540,7 +1540,6 @@ func ResetStatusIndicator(screenId string) error {
|
|||||||
|
|
||||||
func IncrementNumRunningCmds_Update(update *ModelUpdate, screenId string, delta int) {
|
func IncrementNumRunningCmds_Update(update *ModelUpdate, screenId string, delta int) {
|
||||||
newNum := ScreenMemIncrementNumRunningCommands(screenId, delta)
|
newNum := ScreenMemIncrementNumRunningCommands(screenId, delta)
|
||||||
log.Printf("IncrementNumRunningCmds_Update: screenId=%s, newNum=%d\n", screenId, newNum)
|
|
||||||
AddUpdate(update, ScreenNumRunningCommandsType{
|
AddUpdate(update, ScreenNumRunningCommandsType{
|
||||||
ScreenId: screenId,
|
ScreenId: screenId,
|
||||||
Num: newNum,
|
Num: newNum,
|
||||||
@ -1549,7 +1548,6 @@ func IncrementNumRunningCmds_Update(update *ModelUpdate, screenId string, delta
|
|||||||
}
|
}
|
||||||
|
|
||||||
func IncrementNumRunningCmds(screenId string, delta int) {
|
func IncrementNumRunningCmds(screenId string, delta int) {
|
||||||
log.Printf("IncrementNumRunningCmds: screenId=%s, delta=%d\n", screenId, delta)
|
|
||||||
update := &ModelUpdate{}
|
update := &ModelUpdate{}
|
||||||
IncrementNumRunningCmds_Update(update, screenId, delta)
|
IncrementNumRunningCmds_Update(update, screenId, delta)
|
||||||
MainBus.SendUpdate(update)
|
MainBus.SendUpdate(update)
|
||||||
|
Loading…
Reference in New Issue
Block a user