comparison runtime/doc/repeat.txt @ 25056:43593a5d873f

Update runtime files Commit: https://github.com/vim/vim/commit/4d8f476176eadfc745bcb8e143460029048f858d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 27 15:18:56 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Jun 2021 15:30:05 +0200
parents fd37be6dc258
children 84c7dc0fdcd2
comparison
equal deleted inserted replaced
25055:960fe9bef317 25056:43593a5d873f
1 *repeat.txt* For Vim version 8.2. Last change: 2021 Jun 11 1 *repeat.txt* For Vim version 8.2. Last change: 2021 Jun 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
842 starts with the same letter. "f" stands for "finish", use "fr" for "frame". 842 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
843 - Hitting <CR> will repeat the previous one. When doing another command, this 843 - Hitting <CR> will repeat the previous one. When doing another command, this
844 is reset (because it's not clear what you want to repeat). 844 is reset (because it's not clear what you want to repeat).
845 - When you want to use the Ex command with the same name, prepend a colon: 845 - When you want to use the Ex command with the same name, prepend a colon:
846 ":cont", ":next", ":finish" (or shorter). 846 ":cont", ":next", ":finish" (or shorter).
847 *vim9-debug*
848 When debugging a compiled :def function, "step" will stop before every
849 executed line, not every ingle nstruction. Thus it works mostly like a not
850 compiled function. Access to local variables is limited you can use: >
851 echo varname
852 But not much else.
853 When executing a command that is not a specific bytecode instruction but
854 executed like a normal Ex command, "step" will stop once in the compiled
855 context, where local variables can be inspected, and once just before
856 executing the command.
847 857
848 The backtrace shows the hierarchy of function calls, e.g.: 858 The backtrace shows the hierarchy of function calls, e.g.:
849 >bt ~ 859 >bt ~
850 3 function One[3] ~ 860 3 function One[3] ~
851 2 Two[3] ~ 861 2 Two[3] ~