Skip to content

Commit

Permalink
Revert "fix: improve textDocument/definition ordering"
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Aug 15, 2024
1 parent a05f52a commit b71cb7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 63 deletions.
1 change: 0 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## Unreleased
<!-- Add all new changes here. They will be moved under a version at release -->
* `FIX` Improved ordering of results for `textDocument/definition`.
* `FIX` Error `attempt to index a nil value` when `Lua.hint.semicolon == 'All'` [#2788](https://github.com/LuaLS/lua-language-server/issues/2788)

## 3.10.3
Expand Down
66 changes: 4 additions & 62 deletions script/core/definition.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,76 +7,18 @@ local rpath = require 'workspace.require-path'
local jumpSource = require 'core.jump-source'
local wssymbol = require 'core.workspace-symbol'

--- @param s string
--- @return string[]
local function split(s)
local r = {}
s:gsub('[^/]+', function (w)
r[#r+1] = w:gsub("~1", "/"):gsub("~0", "~")
end)
return r
end

--- Returns the Levenshtein distance between the two given string arrays
--- @param a string[]
--- @param b string[]
--- @return number
local function levenshteinDistance(a, b)
local a_len, b_len = #a, #b
local matrix = {} --- @type integer[][]

-- Initialize the matrix
for i = 1, a_len + 1 do
matrix[i] = { [1] = i }
end

for j = 1, b_len + 1 do
matrix[1][j] = j
end

-- Compute the Levenshtein distance
for i = 1, a_len do
for j = 1, b_len do
local cost = (a[i] == b[j]) and 0 or 1
matrix[i + 1][j + 1] =
math.min(matrix[i][j + 1] + 1, matrix[i + 1][j] + 1, matrix[i][j] + cost)
end
end

-- Return the Levenshtein distance
return matrix[a_len + 1][b_len + 1]
end

--- @param path1 string
--- @param path2 string
--- @return number
local function pathSimilarityRatio(path1, path2)
if path1 == path2 then
return 0
end
local parts1 = split(path1)
local parts2 = split(path2)
local distance = levenshteinDistance(parts1, parts2)
return distance * 2 / (#parts1 + #parts2)
end

local function sortResults(results, uri)
local function sortResults(results)
-- 先按照顺序排序
-- Sort in order first
local simularity_cache = {} --- @type table<string,number>
table.sort(results, function (a, b)
local u1 = guide.getUri(a.target)
local u2 = guide.getUri(b.target)
if u1 == u2 then
return a.target.start < b.target.start
else
simularity_cache[u1] = simularity_cache[u1] or pathSimilarityRatio(uri, u1)
simularity_cache[u2] = simularity_cache[u2] or pathSimilarityRatio(uri, u2)
return simularity_cache[u1] < simularity_cache[u2]
return u1 < u2
end
end)
-- 如果2个结果处于嵌套状态,则取范围小的那个
-- If two results are nested, take the one with the smaller range
local lf, lu
for i = #results, 1, -1 do
local res = results[i].target
Expand Down Expand Up @@ -199,7 +141,7 @@ return function (uri, offset)
local results = {}
local uris = checkRequire(source)
if uris then
for _, uri in ipairs(uris) do
for i, uri in ipairs(uris) do
results[#results+1] = {
uri = uri,
source = source,
Expand Down Expand Up @@ -288,7 +230,7 @@ return function (uri, offset)
return nil
end

sortResults(results, uri)
sortResults(results)
jumpSource(results)

return results
Expand Down

0 comments on commit b71cb7a

Please sign in to comment.