Commit 63ef02f5 authored by Eric's avatar Eric Committed by Eric_Lee

fix bug;命令无法记录问题

parent 82dd5009
...@@ -112,6 +112,13 @@ func (p *Parser) parseInputState(b []byte) []byte { ...@@ -112,6 +112,13 @@ func (p *Parser) parseInputState(b []byte) []byte {
} }
p.inputPreState = p.inputState p.inputPreState = p.inputState
if bytes.Contains(b, charEnter) { if bytes.Contains(b, charEnter) {
// 连续输入enter key, 结算上一条可能存在的命令结果
if p.command != ""{
p.parseCmdOutput()
p.cmdRecordChan <- [2]string{p.command, p.output}
p.command = ""
p.output = ""
}
p.inputState = false p.inputState = false
// 用户输入了Enter,开始结算命令 // 用户输入了Enter,开始结算命令
p.parseCmdInput() p.parseCmdInput()
...@@ -127,6 +134,8 @@ func (p *Parser) parseInputState(b []byte) []byte { ...@@ -127,6 +134,8 @@ func (p *Parser) parseInputState(b []byte) []byte {
if !p.inputPreState { if !p.inputPreState {
p.parseCmdOutput() p.parseCmdOutput()
p.cmdRecordChan <- [2]string{p.command, p.output} p.cmdRecordChan <- [2]string{p.command, p.output}
p.command = ""
p.output = ""
} }
} }
return b return b
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment