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

feat(editing-support): add mini-operators plugin #857

Merged
merged 3 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions lua/astrocommunity/editing-support/mini-operators/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# mini-operators

Text edit operators. Part of 'mini.nvim' library.

**Repository:** <https://github.com/echasnovski/mini.operators>
33 changes: 33 additions & 0 deletions lua/astrocommunity/editing-support/mini-operators/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
-- NOTE: the default prefix is `g`, but this will override some bindings.
local prefix = "g"

---@type LazySpec
return {
"echasnovski/mini.operators",
event = "User AstroFile",
dependencies = {
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
mappings = {
n = {
[prefix] = {
name = "Text edit operators",
},
},
v = {
[prefix] = {
name = "Text edit operators",
},
},
},
},
},
opts = {
evaluate = { prefix = prefix .. "e" },
exchange = { prefix = prefix .. "x" },
multiply = { prefix = prefix .. "m" },
replace = { prefix = prefix .. "r" },
sort = { prefix = prefix .. "s" },
},
}
Loading