mirror of
https://github.com/akiyosi/goneovim.git
synced 2025-08-28 13:48:24 +02:00
12 lines
164 B
Go
12 lines
164 B
Go
// +build windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"os/exec"
|
|
"syscall"
|
|
)
|
|
|
|
func PrepareRunProc(cmd *exec.Cmd) {
|
|
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
|
|
}
|