ultisnips icon indicating copy to clipboard operation
ultisnips copied to clipboard

UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips!

Results 122 ultisnips issues
Sort by recently updated
recently updated
newest added

I asked the problem at [coc-issue](https://github.com/neoclide/coc.nvim/issues/3641#issuecomment-1088242776) firstly. I thought this could caused by my snippet? And the output of `:verbose imap ` shows ``` * =UltiSnips#ExpandSnippet() ~/.config/nvim/plugged/ultisnips/autoload/UltiSnips/map_keys.vim line 61 ```...

Some snippets (especially nested ones) don't expand when triggered but instead jump to previous placeholder and start select mode. I have noticed that this behavior started when I installed coc.nvim,...

bug: low
difficulty: hard
triaged

**Expected behavior:** I created this snippet: ``` snippet cab "Co-Authored By" Co-Authored By: `!p import os if os.path.abspath('~/.github-handles.json'): snip.rv = "Co-Authored By: ${1:@email}" else: snip.rv = "Co-Authored By: ${1:Name}

**Expected behavior:** Ultisnips should recognize $text inside dollar symbols for snippet expansion$ when using context math in markdown file **Actual behavior:** It doesn't recognize math context **Steps to reproduce** 1....

**Expected behavior:** No python3 syntax errors **Actual behavior:** Please note that I'm just highlighting the broken call below. The syntax error is in [`.vim/bundle/ultisnips/pythonx/UltiSnips/vim_helper.py`](https://github.com/SirVer/ultisnips/blob/f5ccf0977c611ffd774ca180774959301baaffad/pythonx/UltiSnips/vim_helper.py#L103), line 104. Someone appears to have...

I use `` as my expand trigger. But if there is no snippet to expand, I want `` to do nothing, so I have added a line, `imap ` to...

UltiSnips doesn't seem to be recognising the # key. I have the following snippet snippet `([A-Z])#` "bb" A ``rv = '\\mathbb{' + m[1] + '}'`` endsnippet **Expected behavior:** When pressing...

I have this snippet ``` snippet fra "fra" wA \frac{$1}{$2} endsnippet ``` I put ```$2``` and not ```$0``` in the snippet because there are times when I want to press...

When i put the keyword A on a snippet and it has some '$x' it takes in the completions doesn't work correctly. It only happens for some lengths of the...

Using the following snippet to close the bracket AND to insert a blank if necessary: ``` snippet ( "close bracket" riA (${1:${VISUAL}})`!p if t[2] and t[2][0] not in [',', '.',...