comparison runtime/doc/various.txt @ 27537:063952f68595

Update runtime files. Commit: https://github.com/vim/vim/commit/a2baa73d1d33014adea0fd9567949089ca21a782 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 4 16:09:54 2022 +0000 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Feb 2022 17:15:05 +0100
parents b19230a8d40a
children f1799ba16729
comparison
equal deleted inserted replaced
27536:de1ec574cab2 27537:063952f68595
1 *various.txt* For Vim version 8.2. Last change: 2022 Jan 15 1 *various.txt* For Vim version 8.2. Last change: 2022 Feb 03
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
422 N *+multi_lang* non-English language support |multi-lang| 422 N *+multi_lang* non-English language support |multi-lang|
423 m *+mzscheme* Mzscheme interface |mzscheme| 423 m *+mzscheme* Mzscheme interface |mzscheme|
424 m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn| 424 m *+mzscheme/dyn* Mzscheme interface |mzscheme-dynamic| |/dyn|
425 m *+netbeans_intg* |netbeans| 425 m *+netbeans_intg* |netbeans|
426 T *+num64* 64-bit Number support |Number| 426 T *+num64* 64-bit Number support |Number|
427 Always enabled since 8.2.0271, use v:numbersize to 427 Always enabled since 8.2.0271, use v:numbersize to
428 check the actual size of a Number. 428 check the actual size of a Number.
429 m *+ole* Win32 GUI only: |ole-interface| 429 m *+ole* Win32 GUI only: |ole-interface|
430 N *+packages* Loading |packages| 430 N *+packages* Loading |packages|
431 N *+path_extra* Up/downwards search in 'path' and 'tags' 431 N *+path_extra* Up/downwards search in 'path' and 'tags'
432 m *+perl* Perl interface |perl| 432 m *+perl* Perl interface |perl|
547 547
548 :redi[r] @"> Redirect messages to the unnamed register. For 548 :redi[r] @"> Redirect messages to the unnamed register. For
549 backward compatibility, the ">" after the register 549 backward compatibility, the ">" after the register
550 name can be omitted. 550 name can be omitted.
551 :redi[r] @">> Append messages to the unnamed register. 551 :redi[r] @">> Append messages to the unnamed register.
552 552 *E1092*
553 :redi[r] => {var} Redirect messages to a variable. 553 :redi[r] => {var} Redirect messages to a variable.
554 In legacy script: If the variable doesn't exist, then 554 In legacy script: If the variable doesn't exist, then
555 it is created. If the variable exists, then it is 555 it is created. If the variable exists, then it is
556 initialized to an empty string. After the redirection 556 initialized to an empty string. After the redirection
557 starts, if the variable is removed or locked or the 557 starts, if the variable is removed or locked or the
564 To get the output of one command the |execute()| 564 To get the output of one command the |execute()|
565 function can be used instead of redirection. 565 function can be used instead of redirection.
566 566
567 :redi[r] =>> {var} Append messages to an existing variable. Only string 567 :redi[r] =>> {var} Append messages to an existing variable. Only string
568 variables can be used. 568 variables can be used.
569 569 *E1185*
570 :redi[r] END End redirecting messages. 570 :redi[r] END End redirecting messages.
571 571
572 *:filt* *:filter* 572 *:filt* *:filter*
573 :filt[er][!] {pattern} {command} 573 :filt[er][!] {pattern} {command}
574 :filt[er][!] /{pattern}/ {command} 574 :filt[er][!] /{pattern}/ {command}
647 command. 647 command.
648 Use this for giving a message even when |:silent| was 648 Use this for giving a message even when |:silent| was
649 used. In this example |:silent| is used to avoid the 649 used. In this example |:silent| is used to avoid the
650 message about reading the file and |:unsilent| to be 650 message about reading the file and |:unsilent| to be
651 able to list the first line of each file. > 651 able to list the first line of each file. >
652 :silent argdo unsilent echo expand('%') . ": " . getline(1) 652 :silent argdo unsilent echo expand('%') . ": " . getline(1)
653 < 653 <
654 654
655 *:verb* *:verbose* 655 *:verb* *:verbose*
656 :[count]verb[ose] {command} 656 :[count]verb[ose] {command}
657 Execute {command} with 'verbose' set to [count]. If 657 Execute {command} with 'verbose' set to [count]. If