Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced deprecated vim.loop with vim.uv #611

Open
wants to merge 1 commit into
base: harpoon2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ There is quite a bit of behavior you can configure via `harpoon:setup()`
* `create_list_item`: called when `list:add()` or `list:prepend()` is called. called with an item, which will be a string, when adding through the ui menu
* `BufLeave`: this function is called for every list on BufLeave. if you need custom behavior, this is the place
* `VimLeavePre`: this function is called for every list on VimLeavePre.
* `get_root_dir`: used for creating relative paths. defaults to `vim.loop.cwd()`
* `get_root_dir`: used for creating relative paths. defaults to `vim.uv.cwd()`

### Settings
Settings can alter the experience of harpoon
Expand All @@ -232,7 +232,7 @@ settings = {
save_on_toggle = false,
sync_on_ui_close = false,
key = function()
return vim.loop.cwd()
return vim.uv.cwd()
end,
},
```
Expand All @@ -242,19 +242,19 @@ The 'extend' functionality can be used to add keymaps for opening files in split

```lua
harpoon:extend({
UI_CREATE = function(cx)
UI_CREATE = function(cx)
vim.keymap.set("n", "<C-v>", function()
harpoon.ui:select_menu_item({ vsplit = true })
harpoon.ui:select_menu_item({ vsplit = true })
end, { buffer = cx.bufnr })

vim.keymap.set("n", "<C-x>", function()
harpoon.ui:select_menu_item({ split = true })
harpoon.ui:select_menu_item({ split = true })
end, { buffer = cx.bufnr })

vim.keymap.set("n", "<C-t>", function()
harpoon.ui:select_menu_item({ tabedit = true })
harpoon.ui:select_menu_item({ tabedit = true })
end, { buffer = cx.bufnr })
end,
end,
})
```

Expand Down
4 changes: 2 additions & 2 deletions lua/harpoon/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function M.get_default_config()
sync_on_ui_close = false,

key = function()
return vim.loop.cwd()
return vim.uv.cwd()
end,
},

Expand Down Expand Up @@ -182,7 +182,7 @@ function M.get_default_config()
end,

get_root_dir = function()
return vim.loop.cwd()
return vim.uv.cwd()
end,

---@param config HarpoonPartialConfigItem
Expand Down