How do I make plugin commands repeatable with the dot command?
Plug 'tpope/vim-repeat'
vim-repeat by Tim Pope extends the .
21 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
cgn
The cgn command combines the change operator with the gn motion to change the next occurrence of your last search pattern.
:'<,'>norm .
The :'norm .
visual-mode #visual-mode #editing #normal-mode #repeat #dot-operator
"1p and .
When you paste from a numbered register with "1p, Vim's dot command (.
.
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
ciw + new text + Esc, then n.
The ciw command followed by new text, combined with and .
<C-a> (insert mode)
While in insert mode, pressing re-inserts the exact text you typed during your previous insert session.
; / ,
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 then . to cycle
Vim stores your last 9 deletions in numbered registers "1 through "9.
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
cr{s/m/c/k/u}
The vim-abolish plugin provides cr{type} coercions that instantly convert the word under the cursor to a different naming convention.
{count}J
The J command joins the current line with the line below, adding a space between them.
"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
"1 through "9
Vim maintains a rotating history of deleted text across registers "1 through "9.
crs
The vim-abolish plugin by Tim Pope provides instant case coercion commands that convert the word under your cursor between common naming conventions.