comparison runtime/doc/repeat.txt @ 24911:fd37be6dc258

Update runtime files Commit: https://github.com/vim/vim/commit/2346a6378483c9871016f9fc821ec5cbea638f13 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 13 19:02:49 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Jun 2021 19:15:03 +0200
parents 840665e74421
children 43593a5d873f
comparison
equal deleted inserted replaced
24910:77de4ae3e013 24911:fd37be6dc258
1 *repeat.txt* For Vim version 8.2. Last change: 2021 May 08 1 *repeat.txt* For Vim version 8.2. Last change: 2021 Jun 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
277 277
278 When the optional ! is added no plugin files or 278 When the optional ! is added no plugin files or
279 ftdetect scripts are loaded, only the matching 279 ftdetect scripts are loaded, only the matching
280 directories are added to 'runtimepath'. This is 280 directories are added to 'runtimepath'. This is
281 useful in your .vimrc. The plugins will then be 281 useful in your .vimrc. The plugins will then be
282 loaded during initialization, see |load-plugins|. 282 loaded during initialization, see |load-plugins| (note
283 that the loading order will be reversed, because each
284 directory is inserted before others).
283 Note that for ftdetect scripts to be loaded 285 Note that for ftdetect scripts to be loaded
284 you will need to write `filetype plugin indent on` 286 you will need to write `filetype plugin indent on`
285 AFTER all `packadd!` commands. 287 AFTER all `packadd!` commands.
286 288
287 Also see |pack-add|. 289 Also see |pack-add|.
370 For [noclear] see |vim9-reload|. 372 For [noclear] see |vim9-reload|.
371 Without the |+eval| feature this changes the syntax 373 Without the |+eval| feature this changes the syntax
372 for some commands. 374 for some commands.
373 See |:vim9cmd| for executing one command with Vim9 375 See |:vim9cmd| for executing one command with Vim9
374 syntax and semantics. 376 syntax and semantics.
375 377
376 *:scr* *:scriptnames* 378 *:scr* *:scriptnames*
377 :scr[iptnames] List all sourced script names, in the order they were 379 :scr[iptnames] List all sourced script names, in the order they were
378 first sourced. The number is used for the script ID 380 first sourced. The number is used for the script ID
379 |<SID>|. 381 |<SID>|.
380 {not available when compiled without the |+eval| 382 {not available when compiled without the |+eval|