delimitMate icon indicating copy to clipboard operation
delimitMate copied to clipboard

Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.

Results 53 delimitMate issues
Sort by recently updated
recently updated
newest added

When pressing the double-quotes key in edit mode, vim starts eating 100% CPU and stops responding. **How to reproduce** - Install the plugin. - Launch vim. - Press the double-quotes...

See https://github.com/tpope/vim-endwise/issues/133

I have the following config set for `delimitMate`: ``` vimscript let delimitMate_nesting_quotes = ['`'] let delimitMate_expand_cr = 2 let delimitMate_expand_inside_quotes = 1 ``` When I try to type the following...

I am failing at configuring delimitMate to work with f-strings in python. The desired behavior is that, in python, prepending f to the pair of single (') or double (")...

I use use COC and Delimitmate. In order to use the auto import of COC, you need to add something like this to your init.vim `inoremap pumvisible() ? "\" :...

With the `delimitMate_expand_cr` option set, a newline is inserted while in the completion menu of coq. The completion goes through and the cursor stays on the correct line when pressing...

I have the following block: ``` { | } ``` and when I delete the line with backspaces, I expected to get this: ``` {| } ``` but instead I...

I put the following line in my .vimrc to use autocompleting dollar signs when writing in LaTeX: ``` au FileType tex let b:delimitMate_quotes = "\" ' $" ``` This works...

Hitting `` at the `|` : ``` {|} ``` results in ``` { | } ``` But does not work correctly with parentheses and square brackets: ``` (|) ``` results...

Forgive me if there is already an incantation of settings that allows this. Markdown code fences are lines that start with three backticks. When I write markdown files and type...