How do I make plugin commands repeatable with the dot command?
Plug 'tpope/vim-repeat'
vim-repeat by Tim Pope extends the .
16 results for "repeat dot command"
Plug 'tpope/vim-repeat'
vim-repeat by Tim Pope extends the .
qq;.q then @q or @@
The dot command (.
vim-repeat
The vim-repeat plugin by Tim Pope extends Vim's built-in .
plugins #plugins #repeat #dot-command #workflow #normal-mode
.
The .
@:
The @: command re-executes the most recently run Ex command (any command starting with :).
command-line #command-line #ex-commands #repeat #normal-mode #productivity
<C-a> (insert mode)
While in insert mode, pressing re-inserts the exact text you typed during your previous insert session.
cgn
The cgn command combines the change operator with the gn motion to change the next occurrence of your last search pattern.
"1p then u then . to cycle
Vim stores your last 9 deletions in numbered registers "1 through "9.
ciw + new text + Esc, then n.
The ciw command followed by new text, combined with and .
cis
The cis command deletes the entire sentence under the cursor and drops you into insert mode, ready to type a replacement.
".p
The ".
registers #registers #editing #insert-mode #normal-mode #productivity
; / ,
After using f, t, F, or T to jump to a character on the current line, pressing ; repeats the same search in the same direction, and , repeats it in the opposite
navigation #navigation #motions #normal-mode #editing #productivity
"1p then u.u.u.
Vim stores your last 9 deletions (of one line or more) in the numbered registers "1 through "9.
registers #registers #editing #normal-mode #undo-redo #paste
ci" / ci( / ci{ / ci[ / ci` / ci'
The ci{delimiter} family of commands changes the text inside any matching pair of delimiters.
editing #editing #text-objects #change #delimiters #normal-mode
crs
The vim-abolish plugin by Tim Pope provides instant case coercion commands that convert the word under your cursor between common naming conventions.
<C-n>
The vim-visual-multi plugin (formerly vim-multiple-cursors) brings VS Code-style multiple cursor editing to Vim.
plugins #plugins #visual-multi #editing #multiple-cursors #refactoring