mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-08-28 02:24:49 -05:00
We're using glamour for rendering the markdown, and I'm interested in using it in other places too
9 lines
109 B
Go
9 lines
109 B
Go
package termenv
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
tcgetattr = unix.TCGETS
|
|
tcsetattr = unix.TCSETS
|
|
)
|