]> git.lizzy.rs Git - micro.git/blob - cmd/micro/actions_other.go
Add suspend for linux only
[micro.git] / cmd / micro / actions_other.go
1 // +build !linux
2
3 package main
4
5 func (v *View) Suspend(usePlugin bool) bool { 
6         TermError("Suspend is only supported on Linux")
7
8         return false
9 }