We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3237777 + 490177a commit b90f2feCopy full SHA for b90f2fe
lua/nvim-paredit/defaults.lua
@@ -4,10 +4,10 @@ local M = {}
4
5
M.default_keys = {
6
[">)"] = { api.slurp_forwards, "Slurp forwards" },
7
- [">("] = { api.slurp_backwards, "Slurp backwards" },
+ [">("] = { api.barf_backwards, "Barf backwards" },
8
9
["<)"] = { api.barf_forwards, "Barf forwards" },
10
- ["<("] = { api.barf_backwards, "Barf backwards" },
+ ["<("] = { api.slurp_backwards, "Slurp backwards" },
11
12
[">e"] = { api.drag_element_forwards, "Drag element right" },
13
["<e"] = { api.drag_element_backwards, "Drag element left" },
0 commit comments