Skip to content
Discussion options

You must be logged in to vote

That's strange.

Your setup is working for me.

Do you have a duplicate setup? I can reproduce having both gx and gX for exchange like so:

require("mini.operators").setup()
require("mini.operators").setup({
  exchange = { prefix = "gX" },
})

EDIT:

The init.lua below is also working:

init.lua
---@diagnostic disable: undefined-global
local function setup_deps(path_to_site)
  local mini_path = path_to_site .. "pack/deps/start/mini.nvim"
  if not vim.uv.fs_stat(mini_path) then
    vim.cmd('echo "Installing `mini.nvim`" | redraw')
    vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/echasnovski/mini.nvim", mini_path })
    vim.cmd("packadd mini.nvim | helptags ALL")
    v…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@echasnovski
Comment options

@krovuxdev
Comment options

@echasnovski
Comment options

@krovuxdev
Comment options

Answer selected by echasnovski
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested mini.operators
3 participants