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?
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?
You can't use multiple modifiers in CLI Vim mappings. Find another mapping.