air icon indicating copy to clipboard operation
air copied to clipboard

Process not killed when closing terminal window/tab/session

Open bobmoff opened this issue 1 year ago • 3 comments

I am using iTerm on Mac and when closing the view/window that is running Air, the process is still running when I look at "Activity monitor".

Very easy reproduced. Just init a project with following code:

package main

import (
	"fmt"
	"time"
)

func main() {
	// print hello world with an 1 second interval, for ever
	for {
		fmt.Println("Hello World")
		time.Sleep(time.Second)
	}
}

bobmoff avatar Jan 19 '23 11:01 bobmoff