Skip to content

Commit

Permalink
vim.loop -> vim.uv
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-x committed Nov 7, 2023
1 parent 48f7cc1 commit 43dd6df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/navigator/hierarchy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ local lsphelper = require('navigator.lspwrapper')

local path_sep = require('navigator.util').path_sep()
local path_cur = require('navigator.util').path_cur()
local cwd = vim.uv.cwd()
local uv = vim.uv or vim.loop
local cwd = uv.cwd()
local in_method = 'callHierarchy/incomingCalls'
local out_method = 'callHierarchy/outgoingCalls'

Expand Down

0 comments on commit 43dd6df

Please sign in to comment.