delimitMate
delimitMate copied to clipboard
Expand CR not working for nested quotes
I have the following config set for delimitMate
:
let delimitMate_nesting_quotes = ['`']
let delimitMate_expand_cr = 2
let delimitMate_expand_inside_quotes = 1
When I try to type the following in a .md
-file:
``` bash<CR>
I would expect the following to be inserted (with |
being the cursor):
``` bash
|
```
but instead it looks like this:
``` bash
|```
Is this a bug or did I misconfigure something?