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

**Expected behavior:** When i type i expect a popup to show the available snippets. **Actual behavior:** Nothing displays **Steps to reproduce** 1. plugins.vim ``` Plug 'SirVer/ultisnips' "causing tab to not...

In insert mode I can see quite a lag especially when I do enter Russian letters. **Expected behavior:** Should be no lag **Actual behavior:** Lag ![ultisnips-issue1](https://user-images.githubusercontent.com/234774/72271345-c4bc5700-3637-11ea-98f2-ec21a0c098f6.gif) **Steps to reproduce** Well,...

bug: medium
can't reproduce
triaged

**Expected behavior:** Be able to "retrigger" the snippet. **Actual behavior:** Usually I use (for Python): `class` + `Ctrl+e` to trigger the snippet and it expands as expected: ``` class MyClass(object):...

**Expected behavior:** I'm not sure if this is UltiSnips issue or my (maybe broken) vim/python installation, because it running well before I upgraded my python from 3.6 to 3.10.5. Actually,...

I'm using snippets for both TypeScript and Javascript and I want to use the `console.log` snippet that is defined in both languages. I'm ok with choosing one of both, but...

**Expected behavior:** I can edit my own snippets when using `:UltiSnipsEdit`. **Actual behavior:** A message pop up: `UltiSnips was not able to find a default directory for snippets. Do you...

bug: low
neovim only
triaged

**Actual behavior:** ![1](https://user-images.githubusercontent.com/80107081/180610070-13fcfd32-cb06-4280-8dcf-9a9eec9236eb.gif) Related snippets ```snippets snippet '(?a)\blm' "行内公式 Inline Formula" Ar $$1$ $0 endsnippet snippet case "Cases 环境 Cases Environment" w \begin{cases} $1 \end{cases} $0 endsnippet ``` That is,...

![Demo](https://user-images.githubusercontent.com/80107081/178452372-2846bf94-3734-421d-9b24-136612014296.gif) Snippets Code ```snippets global !p def test(snip): before = snip.buffer[snip.line][:snip.snippet_start[1]] after = snip.buffer[snip.line][snip.snippet_end[1]:] snip.buffer[snip.line] = '' snip.expand_anon(before + '[$1, $2]$0' + after) endglobal snippet t "Description" i ($1, $2)$0...

For a snippet containing escaped `/` in a transformation the syntax highlighting is broken for following lines. The snippets are expanded correctly. It is just the highlighting when the snippet...