9 lines
145 B
Python
9 lines
145 B
Python
from editing import *
|
|
|
|
keymap = {
|
|
'left': cursor_go_left,
|
|
'right': cursor_go_right,
|
|
'up': cursor_go_up,
|
|
'down': cursor_go_down
|
|
}
|