comparison runtime/doc/usr_41.txt @ 22232:f22acf6472da v8.2.1665

patch 8.2.1665: cannot do fuzzy string matching Commit: https://github.com/vim/vim/commit/635414dd2f3ae7d4d972d79b806348a6516cb91a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 11 22:25:15 2020 +0200 patch 8.2.1665: cannot do fuzzy string matching Problem: Cannot do fuzzy string matching. Solution: Add matchfuzzy(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6932)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Sep 2020 22:30:04 +0200
parents d4c7b3e9cd17
children 0491b9cafd44
comparison
equal deleted inserted replaced
22231:e1311fb42cd4 22232:f22acf6472da
601 tolower() turn a string to lowercase 601 tolower() turn a string to lowercase
602 toupper() turn a string to uppercase 602 toupper() turn a string to uppercase
603 charclass() class of a character 603 charclass() class of a character
604 match() position where a pattern matches in a string 604 match() position where a pattern matches in a string
605 matchend() position where a pattern match ends in a string 605 matchend() position where a pattern match ends in a string
606 matchfuzzy() fuzzy matches a string in a list of strings
606 matchstr() match of a pattern in a string 607 matchstr() match of a pattern in a string
607 matchstrpos() match and positions of a pattern in a string 608 matchstrpos() match and positions of a pattern in a string
608 matchlist() like matchstr() and also return submatches 609 matchlist() like matchstr() and also return submatches
609 stridx() first index of a short string in a long string 610 stridx() first index of a short string in a long string
610 strridx() last index of a short string in a long string 611 strridx() last index of a short string in a long string