Commit 6a51bd1a authored by kelianchun_miller's avatar kelianchun_miller

pull issue #120 remove ps1

parent fd713e0e
......@@ -364,7 +364,7 @@ class WebTerminalHandler(tornado.websocket.WebSocketHandler):
self.term.input_mode = True
if str(jsondata['data']) in ['\r', '\n', '\r\n']:
if self.term.vim_flag:
match = re.compile(r'\x1b\[\?1049', re.X).findall(self.vim_data)
match = re.compile(r'\x1b\[\?1049', re.X).findall(self.term.vim_data)
if match:
if self.term.vim_end_flag or len(match) == 2:
self.term.vim_flag = False
......
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