comparison runtime/doc/builtin.txt @ 28010:c968191a8557

Update runtime files Commit: https://github.com/vim/vim/commit/1588bc8ebee22f2855f27273fc2234fff370f86c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 8 21:35:07 2022 +0000 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Mar 2022 22:45:09 +0100
parents d19b7aee1925
children b737bfa876c5
comparison
equal deleted inserted replaced
28009:3bffa026c6d9 28010:c968191a8557
1 *builtin.txt* For Vim version 8.2. Last change: 2022 Feb 23 1 *builtin.txt* For Vim version 8.2. Last change: 2022 Mar 08
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
5570 5570
5571 If there are no matching strings or there is an error, then an 5571 If there are no matching strings or there is an error, then an
5572 empty list is returned. If length of {str} is greater than 5572 empty list is returned. If length of {str} is greater than
5573 256, then returns an empty list. 5573 256, then returns an empty list.
5574 5574
5575 Refer to |fuzzy-match| for more information about fuzzy 5575 Refer to |fuzzy-matching| for more information about fuzzy
5576 matching strings. 5576 matching strings.
5577 5577
5578 Example: > 5578 Example: >
5579 :echo matchfuzzy(["clay", "crow"], "cay") 5579 :echo matchfuzzy(["clay", "crow"], "cay")
5580 < results in ["clay"]. > 5580 < results in ["clay"]. >
8158 :!find /usr/share/sounds -type f | grep -v index.theme 8158 :!find /usr/share/sounds -type f | grep -v index.theme
8159 8159
8160 < Can also be used as a |method|: > 8160 < Can also be used as a |method|: >
8161 GetSoundPath()->sound_playfile() 8161 GetSoundPath()->sound_playfile()
8162 8162
8163 < There is no error *E538* , but can listen to 538.nl. 8163 < {only available when compiled with the |+sound| feature}
8164 {only available when compiled with the |+sound| feature}
8165 8164
8166 8165
8167 sound_stop({id}) *sound_stop()* 8166 sound_stop({id}) *sound_stop()*
8168 Stop playing sound {id}. {id} must be previously returned by 8167 Stop playing sound {id}. {id} must be previously returned by
8169 `sound_playevent()` or `sound_playfile()`. 8168 `sound_playevent()` or `sound_playfile()`.