-
Notifications
You must be signed in to change notification settings - Fork 18
Setup
Johnny M. Salas edited this page Jun 5, 2022
·
2 revisions
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
}