Do not display ^I when pasting a tabulation char.

This commit is contained in:
Florent Le Coz 2012-05-20 13:54:38 +02:00
parent 65c2d3dc88
commit 837b46d68b

View file

@ -1072,9 +1072,11 @@ class Core(object):
"""
main loop waiting for the user to press a key
"""
def replace_line_breaks(key):
def replace_special_keys(key):
if key == '^J':
return '\n'
elif key == '^I':
return ' '
return key
while self.running:
if self.paused: continue
@ -1102,11 +1104,11 @@ class Core(object):
if func:
func()
else:
res = self.do_command(replace_line_breaks(char), False)
res = self.do_command(replace_special_keys(char), False)
if res:
self.refresh_window()
else:
self.do_command(''.join(list(map(replace_line_breaks, char_list))), True)
self.do_command(''.join(list(map(replace_special_keys char_list))), True)
self.refresh_window()
self.doupdate()