Skip to content
Johnny M. Salas edited this page Jun 5, 2022 · 2 revisions

Customize prefix

abolish.vim by tpope uses cr as the default prefix for coercion. In my experience, using cr is not compatible with visual mode because it activates the change operator. The following is an example of how to set it up with cr:

use { "johmsalas/text-case.nvim",
  config = function()
    require('textcase').setup {
      prefix = "cr"
    }
  end
}
Clone this wiki locally