NOOP for "Autowrap mode"

openid
Marcin Kulik 13 years ago
parent e1b1bc56da
commit 73221c8d14

@ -40,40 +40,42 @@ class AsciiIo.AnsiInterpreter
mode = undefined
for mode in modes
if mode is "1049"
if mode is "1"
# 1 + h / l = cursor keys stuff
else if mode is "7"
# Enables/disables autowrap mode
else if mode is "12"
if action is "h"
# blinking cursor
else action is "l"
# steady cursor
else if mode is "25"
if action is "h"
@terminal.showCursor true
else if action is "l"
@terminal.showCursor false
else if mode is "47"
if action is "h"
# Save cursor position, switch to alternate screen buffer, and clear screen.
@terminal.saveCursor()
@terminal.switchToAlternateBuffer()
@terminal.clearScreen()
else if action is "l"
# Clear screen, switch to normal screen buffer, and restore cursor position.
@terminal.clearScreen()
@terminal.switchToNormalBuffer()
@terminal.restoreCursor()
else if mode is "1000"
# Enables/disables normal mouse tracking
else if mode is "1001"
# pbly sth with mouse/keys...
else if mode is "1002"
# 2002 + h / l = mouse tracking stuff
else if mode is "1"
# 1 + h / l = cursor keys stuff
else if mode is "47"
else if mode is "1049"
if action is "h"
# Save cursor position, switch to alternate screen buffer, and clear screen.
@terminal.saveCursor()
@terminal.switchToAlternateBuffer()
@terminal.clearScreen()
else if action is "l"
# Clear screen, switch to normal screen buffer, and restore cursor position.
@terminal.clearScreen()
@terminal.switchToNormalBuffer()
else if mode is "25"
if action is "h"
@terminal.showCursor true
else if action is "l"
@terminal.showCursor false
else if mode is "12"
if action is "h"
# blinking cursor
else action is "l"
# steady cursor
@terminal.restoreCursor()
else
throw "unknown mode: " + mode + action

Loading…
Cancel
Save