Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 904 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 904 Bytes

Fuzzy Search

How is the fuzzy search algorithm in Sublime Text designed?

Here it is in PowerShell.

.\countries.ps1 | Select-FuzzyString pia
.\countries.ps1 | Select-FuzzyString uae
.\countries.ps1 | Select-FuzzyString svg
.\countries.ps1 | Select-FuzzyString bh

.\countries.ps1 | sfs united

In Action

Changes

7/11/2016

Thank you Chris Hunt

  • Adds Get-FuzzyCommand and Get-FuzzyChildItem
  • Adds a Recurse switch to Get-FuzzyChildItem
  • Extact the creation of the Regex pattern to use with any Pattern param
  • Extact the creation of the Regex pattern to use with any Pattern param
  • Fixes using [Regex] type breaking file system object matching
  • Select-FuzzyVariable