mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-08 16:10:29 +09:00
28 lines
639 B
Go
28 lines
639 B
Go
//go:build linux || darwin || dragonfly || solaris || openbsd || netbsd || freebsd
|
|
|
|
package action
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/micro-editor/micro/v2/internal/screen"
|
|
)
|
|
|
|
// Suspend sends micro to the background. This is the same as pressing CtrlZ in most unix programs.
|
|
// This only works on linux and has no default binding.
|
|
// This code was adapted from the suspend code in nsf/godit
|
|
func (*BufPane) Suspend() bool {
|
|
screenb := screen.TempFini()
|
|
|
|
// suspend the process
|
|
pid := syscall.Getpid()
|
|
err := syscall.Kill(pid, syscall.SIGSTOP)
|
|
if err != nil {
|
|
screen.TermMessage(err)
|
|
}
|
|
|
|
screen.TempStart(screenb)
|
|
|
|
return false
|
|
}
|