comparison runtime/doc/editing.txt @ 27903:d19b7aee1925

Update runtime files. Commit: https://github.com/vim/vim/commit/c51cf0329809c7ae946c59d6f56699227efc9d1b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 26 12:25:45 2022 +0000 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Feb 2022 13:30:04 +0100
parents 8fc68ce4a097
children 6dd88e45d47d
comparison
equal deleted inserted replaced
27902:8481c8908b5e 27903:d19b7aee1925
442 avoid the special meaning of '"', '|', '%' and '#'. However, 'wildignore' 442 avoid the special meaning of '"', '|', '%' and '#'. However, 'wildignore'
443 does apply like to other wildcards. 443 does apply like to other wildcards.
444 444
445 Environment variables in the expression are expanded when evaluating the 445 Environment variables in the expression are expanded when evaluating the
446 expression, thus this works: > 446 expression, thus this works: >
447 :e `=$HOME . '/.vimrc'` 447 :e `=$HOME .. '/.vimrc'`
448 This does not work, $HOME is inside a string and used literally: > 448 This does not work, $HOME is inside a string and used literally: >
449 :e `='$HOME' . '/.vimrc'` 449 :e `='$HOME' .. '/.vimrc'`
450 450
451 If the expression returns a string then names are to be separated with line 451 If the expression returns a string then names are to be separated with line
452 breaks. When the result is a |List| then each item is used as a name. Line 452 breaks. When the result is a |List| then each item is used as a name. Line
453 breaks also separate names. 453 breaks also separate names.
454 Note that such expressions are only supported in places where a filename is 454 Note that such expressions are only supported in places where a filename is