github.com/Mrs4s/go-cqhttp@v1.2.0/global/terminal/quick_edit.go (about) 1 //go:build !windows 2 3 package terminal 4 5 // RestoreInputMode 还原输入模式,非Windows系统永远返回nil 6 func RestoreInputMode() error { 7 return nil 8 } 9 10 // DisableQuickEdit 禁用快速编辑,非Windows系统永远返回nil 11 func DisableQuickEdit() error { 12 return nil 13 }