chore: lua-language-server 3.9.1 -> 3.10.5 (#2898)

This commit is contained in:
Alexander Courtis 2024-09-08 14:40:17 +10:00 committed by GitHub
parent ea55ef1203
commit 70d7377c3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ jobs:
strategy: strategy:
matrix: matrix:
nvim_version: [ stable, nightly ] nvim_version: [ stable, nightly ]
luals_version: [ 3.9.1 ] luals_version: [ 3.10.5 ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -261,7 +261,7 @@ function Marks:navigate_select()
if not choice or choice == "" then if not choice or choice == "" then
return return
end end
local node = self:get { absolute_path = choice } local node = self.marks[choice]
if node and not node.nodes and not utils.get_win_buf_from_path(node.absolute_path) then if node and not node.nodes and not utils.get_win_buf_from_path(node.absolute_path) then
open_file.fn("edit", node.absolute_path) open_file.fn("edit", node.absolute_path)
elseif node then elseif node then