Which command in the vi editor allows you to add text immediately after the cursor on the current line?
Explanation
In vi editor, the command 'a' appends text right after the cursor position on the current line. 'i' inserts before the cursor, 'I' inserts at the beginning of the line, and 'A' appends text at the end of the line.