mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-05-24 15:18:49 +00:00
8 lines
191 B
Lua
8 lines
191 B
Lua
|
|
local string_distance = require('telescope.algos.string_distance')
|
|
|
|
print(string_distance("hello", "help"))
|
|
print(string_distance("hello", "hello"))
|
|
print(string_distance("hello", "asdf"))
|
|
|