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 1 commit
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>
31 changes: 31 additions & 0 deletions lua/astrocommunity/editing-support/mini-operators/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
-- NOTE: this will override the default AstroNvim keybinding for opening neo-tree.
-- the default prefix would be g, but this will also override some bindings.
local prefix = "<Leader>o"

local mappings = {
n = {
[prefix] = {
name = "Text edit operators",
},
},
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. I think overriding the neo-tree default is a no-go. @AstroNvim/astrocommunity-maintainers Any ideas?
  2. Similar to other reviews: Lets use the same method for mappings as we do most of the other plugins.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree not to override default neo-tree operator


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