How do I replace a single character without entering insert mode?
r{char}
The r{char} command replaces the character under the cursor with {char} without ever entering insert mode.
5 results for "replace char r"
r{char}
The r{char} command replaces the character under the cursor with {char} without ever entering insert mode.
r{char} in visual mode
In visual mode, pressing r followed by a character replaces every character in the selection with that single character.
<C-v>selection r{char}
In visual block mode, pressing r followed by a character replaces every character in the selected rectangle with that character.
<C-v>jjc replacement<Esc>
Visual block mode's change command lets you replace a rectangular column of text across multiple lines in a single operation.
visual-mode #editing #visual-mode #block-mode #normal-mode #productivity
<C-v>
The (Ctrl+v) command enters visual block mode, which lets you select a rectangular column of text across multiple lines.