nit: this is a temporary change

This commit is contained in:
TJ DeVries
2020-10-30 18:01:27 -04:00
parent 78cf7ebd7f
commit 656f316aee

View File

@@ -7,7 +7,12 @@
-- > matches on consecutive letters and starts of words. This allows matching -- > matches on consecutive letters and starts of words. This allows matching
-- > using acronyms or different parts of the path." - J Hawthorn -- > using acronyms or different parts of the path." - J Hawthorn
local path = require('telescope.path') local has_path, path = pcall(require, 'telescope.path')
if not has_path then
path = {
separator = '/'
}
end
local SCORE_GAP_LEADING = -0.005 local SCORE_GAP_LEADING = -0.005
local SCORE_GAP_TRAILING = -0.005 local SCORE_GAP_TRAILING = -0.005