In vi editor, 'a' (append) switches to insert mode and places the cursor AFTER the current character position, allowing you to append text. This is different from 'A' which appends at end of line, 'i' which inserts BEFORE cursor, and 'I' which inserts at beginning of line. The lowercase 'a' specifically appends at the end of current cursor position.