Skip to content

Commit

Permalink
Merge pull request #84 from MitjaBezensek/patch-1
Browse files Browse the repository at this point in the history
Fix missing paredit reference.
  • Loading branch information
julienvincent authored Dec 26, 2024
2 parents aaa9367 + f5a7310 commit ac4c3e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ paredit.setup({
[">e"] = { paredit.api.drag_element_forwards, "Drag element right" },
["<e"] = { paredit.api.drag_element_backwards, "Drag element left" },

[">p"] = { api.drag_pair_forwards, "Drag element pairs right" },
["<p"] = { api.drag_pair_backwards, "Drag element pairs left" },
[">p"] = { paredit.api.drag_pair_forwards, "Drag element pairs right" },
["<p"] = { paredit.api.drag_pair_backwards, "Drag element pairs left" },

[">f"] = { paredit.api.drag_form_forwards, "Drag form right" },
["<f"] = { paredit.api.drag_form_backwards, "Drag form left" },
Expand Down

0 comments on commit ac4c3e4

Please sign in to comment.