Velocity/mode/insert.py

19 lines
330 B
Python
Raw Normal View History

2022-03-19 15:13:28 +00:00
from core import cursors
from mode import normal
def execute(instance, key):
if key == 27:
# Switch to normal mode
instance.mode = "normal"
normal.activate(instance)
return instance
def activate(instance):
# Switch the cursor to a line
cursors.cursor_mode("line")
return instance