max397574/better-escape.nvim

`kkk` exits visual mode with default mappings

Closed this issue · 2 comments

Problem

kkk exits visual mode.

Steps to reproduce

  1. Use default mappings
  2. Open vim
  3. Navigate to a line in the middle of the file
  4. vkkk
  5. You will now be in normal mode 😳

I don't think this is intentional.

Workaround

Use this mapping

mappings = {
    v = {
        j = {
            k = false,
        }
    }
}

I can't reproduce this. There was a similar bug, mentioned here, that was fixed in a later version.

Are you using the latest version of better-escape.nvim ?

Yep, my version was 2 days out of date. That update fixed it. Thanks!