Normal Mode
r x
Replace char under cursor with x
r$ → replace with $
1
2
3
4
def greet(name):
msg = "hello, " + name
print(msg)
return msg
-- NORMAL --
Free practice — click the editor, then type. Try
r x yourself.Replace char under cursor with x
r x yourself.