0

Here is the command:

vnoremap <C-S-S> :s/\v([.!?])\s+/\1\r\r/g<CR>`<i<ESC>

The command takes a text selection and divides it into sentences separated by new lines. Why would this work in gvim and not vim?

user1770201
  • 391
  • 1
  • 2
  • 6

1 Answers1

1

You can't use multiple modifiers in CLI Vim mappings. Find another mapping.

romainl
  • 40,486
  • 5
  • 85
  • 117