comparison runtime/doc/eval.txt @ 19813:350e1d3131d8

Update runtime files Commit: https://github.com/vim/vim/commit/191acfdecabfbd2a74867e77004196fb3b4a8c14 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 27 20:42:43 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Mar 2020 21:00:05 +0100
parents 2dc5e6ddeb4c
children 658248b68f7c
comparison
equal deleted inserted replaced
19812:7cde7ea94dd3 19813:350e1d3131d8
1 *eval.txt* For Vim version 8.2. Last change: 2020 Mar 22 1 *eval.txt* For Vim version 8.2. Last change: 2020 Mar 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
5839 ignored. See |feature-list| below. 5839 ignored. See |feature-list| below.
5840 5840
5841 When {check} is present and not zero: The result is a Number, 5841 When {check} is present and not zero: The result is a Number,
5842 which is 1 if the feature {feature} could ever be supported, 5842 which is 1 if the feature {feature} could ever be supported,
5843 zero otherwise. This is useful to check for a typo in 5843 zero otherwise. This is useful to check for a typo in
5844 {feature}. Keep in mind that an older Vim version will not 5844 {feature} and to detect dead code. Keep in mind that an older
5845 know about a feature added later. 5845 Vim version will not know about a feature added later and
5846 features that have been abandoned will not be know by the
5847 current Vim version.
5846 5848
5847 Also see |exists()|. 5849 Also see |exists()|.
5848 5850
5849 Note that to skip code that has a syntax error when the 5851 Note that to skip code that has a syntax error when the
5850 feature is not available, Vim may skip the rest of the line 5852 feature is not available, Vim may skip the rest of the line