to dir
macros in vim
rev 12 nov 2022
» macros↓    sources↓

.........................
✶  record a series of commands (make a macro):

  To start recording, press 'q' in normal mode followed by a letter (a to z). 
    That starts recording keystrokes to the specified register. 
    Vim displays 'recording' in the status line. 
  Type any normal mode commands, or enter insert mode and type text. 
  To stop recording, again press 'q' while in normal mode.
  To playback your keystrokes, press @ followed by the letter previously chosen. 
    Typing @@ repeats the last playback. 

  * Recording keys for repeated jobs
      https://vim.fandom.com/wiki/Recording_keys_for_repeated_jobs
  * Macros
      https://vim.fandom.com/wiki/Macros


.......................................................
➽ You can search these sources for more:

  * Vim Tips Wiki
      https://vim.fandom.com/wiki/Vim_Tips_Wiki

  * Vim StackExchange
      https://vi.stackexchange.com/

  * Vim documentation
      https://www.vim.org/docs.php


_______________________________________________________
begin 14 oct 2020
Category: editors - vim
-- 0 --