In the vi editor, which command allows you to insert text directly before the cursor position?
Explanation
The 'i' command in vi enters insert mode and allows you to add text immediately to the left of the cursor. Other commands like 'a' append text after the cursor, 's' substitutes a character, and 'S' replaces the whole line.