Skip to content

Commit

Permalink
fix: add splice key to defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
armed committed Oct 16, 2023
1 parent b7a7fe9 commit 2f0628e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/nvim-paredit/defaults.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
local api = require("nvim-paredit.api")
local unwrap = require("nvim-paredit.api.unwrap")

local M = {}

M.default_keys = {
["<localleader>@"] = { unwrap.unwrap_form_under_cursor, "Splice sexp", },

[">)"] = { api.slurp_forwards, "Slurp forwards" },
[">("] = { api.barf_backwards, "Barf backwards" },

Expand Down

0 comments on commit 2f0628e

Please sign in to comment.