(p *process)
| 191 | } |
| 192 | |
| 193 | func (t *tmuxClient) AddProcess(p *process) { |
| 194 | t.processes = append(t.processes, p) |
| 195 | } |
| 196 | |
| 197 | func (t *tmuxClient) RespawnProcess(p *process) { |
| 198 | command := strings.ReplaceAll(fmt.Sprintf("%q", p.Command), "$", "\\$") |