mirror of
https://github.com/yudai/gotty.git
synced 2026-01-05 00:58:50 +01:00
Set TERM=xterm-256color
This helps ensure a proper TERM value when running from e.g. systemd or VSCode's debugger. Fixes #5
This commit is contained in:
parent
d503d912f3
commit
11396d7877
1 changed files with 2 additions and 0 deletions
|
|
@ -30,6 +30,8 @@ type LocalCommand struct {
|
|||
func New(command string, argv []string, options ...Option) (*LocalCommand, error) {
|
||||
cmd := exec.Command(command, argv...)
|
||||
|
||||
cmd.Env = append(os.Environ(), "TERM=xterm-256color")
|
||||
|
||||
pty, err := pty.Start(cmd)
|
||||
if err != nil {
|
||||
// todo close cmd?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue