Skip to content

Commit

Permalink
Merge pull request #50 from ekaitz-zarraga/patch-1
Browse files Browse the repository at this point in the history
FIX docs: get_node_edges => get_form_edges
  • Loading branch information
julienvincent committed Jan 27, 2024
2 parents 5818754 + 6d97e7a commit 3309608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ require("nvim-paredit").setup({
end,
-- Accepts a Treesitter node representing a form and should return the 'edges' of the node. This
-- includes the node text and the range covered by the node
get_node_edges = function(node)
get_form_edges = function(node)
return {
left = { text = "#{", range = { 0, 0, 0, 2 } },
right = { text = "}", range = { 0, 5, 0, 6 } },
Expand Down

0 comments on commit 3309608

Please sign in to comment.