comparison runtime/doc/eval.txt @ 29236:0eef32b4ebbc

Update runtime files Commit: https://github.com/vim/vim/commit/d799daa660b8821943cbe1682f00da9e812dd48c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 20 11:17:32 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Mon, 20 Jun 2022 12:30:06 +0200
parents 1e9e9d89f0ee
children dc4de65a7fb7
comparison
equal deleted inserted replaced
29235:fbcbc953c2ec 29236:0eef32b4ebbc
1 *eval.txt* For Vim version 8.2. Last change: 2022 Jun 03 1 *eval.txt* For Vim version 8.2. Last change: 2022 Jun 17
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
529 String automatically. Thus the String '4' and the number 4 will find the same 529 String automatically. Thus the String '4' and the number 4 will find the same
530 entry. Note that the String '04' and the Number 04 are different, since the 530 entry. Note that the String '04' and the Number 04 are different, since the
531 Number will be converted to the String '4', leading zeros are dropped. The 531 Number will be converted to the String '4', leading zeros are dropped. The
532 empty string can also be used as a key. 532 empty string can also be used as a key.
533 533
534 In |Vim9| script literally keys can be used if the key consists of alphanumeric 534 In |Vim9| script a literal key can be used if it consists only of alphanumeric
535 characters, underscore and dash, see |vim9-literal-dict|. 535 characters, underscore and dash, see |vim9-literal-dict|.
536 *literal-Dict* *#{}* 536 *literal-Dict* *#{}*
537 To avoid having to put quotes around every key the #{} form can be used in 537 To avoid having to put quotes around every key the #{} form can be used in
538 legacy script. This does require the key to consist only of ASCII letters, 538 legacy script. This does require the key to consist only of ASCII letters,
539 digits, '-' and '_'. Example: > 539 digits, '-' and '_'. Example: >