mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-26 17:00:21 +09:00
10 lines
150 B
Go
10 lines
150 B
Go
// +build !linux
|
|
|
|
package main
|
|
|
|
func (v *View) Suspend(usePlugin bool) bool {
|
|
messenger.Error("Suspend is only supported on Linux")
|
|
|
|
return false
|
|
}
|