Skip to content

Commit

Permalink
ray-x/go.nvim#241 dirname nil
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-x committed Nov 23, 2022
1 parent f8c7433 commit e4a5dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/navigator/lspclient/clients_default.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ M.defaults = function()
},
},
root_dir = function(fname)
return util.root_pattern('go.mod', '.git')(fname) or dirname(fname) -- util.path.dirname(fname)
return util.root_pattern('go.mod', '.git')(fname) or util.path.dirname(fname)
end,
},
clangd = {
Expand Down

0 comments on commit e4a5dcd

Please sign in to comment.