mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
- return if subprocess cmd == nil - hide whole interface when attaching to container - show interface when detaching from container - don't panic on exit after detaching
9 lines
291 B
Go
9 lines
291 B
Go
// +build windows
|
|
|
|
package winterm
|
|
|
|
// AddInRange increments a value by the passed quantity while ensuring the values
|
|
// always remain within the supplied min / max range.
|
|
func addInRange(n int16, increment int16, min int16, max int16) int16 {
|
|
return ensureInRange(n+increment, min, max)
|
|
}
|