Command Mode
:e file
Open file in current buffer
:e src/app.py
1
2
3
4
def greet(name):
msg = "hello, " + name
print(msg)
return msg
-- NORMAL --
Free practice — click the editor, then type. Try
:e file yourself.Open file in current buffer
:e file yourself.