Skip to content
Discussion options

You must be logged in to vote

Should this be considered a problem with mini.clue? Or should I accept it and rewrite my empty mappings for groups to clues instead?

I don't think this is a problem with 'mini.clue'. Having real mappings for both <Leader>d and <Leader>dh is a bit problematic in itself.

What indeed should work is to have real mappings only for the actions you want to do outside of 'mini.clue' and put a group description in config.clues. So something like this:

require('mini.clue').setup({
  triggers = {
    { mode = 'n', keys = '<leader>' },
  },
  clues = {
    { mode = 'n', keys = '<leader>d', desc = 'Group' },

    { mode = 'n', keys = '<leader>dh', postkeys = '<leader>d' },
    { mode = 'n', keys = '<…

Replies: 1 comment 2 replies

Comment options

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

@s-cerevisiae
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.clue
2 participants