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 want to perform two transformations at once. The first transformation substitutes any spaces for underscores. Easy enough: ``` snippet p "Insert Link (substitute spaces)" [${1:${VISUAL}}](./${1/ /_/g})$0 endsnippet ``` So...

Let these be tex.snippets ``` snippet mk "Math" iA \($1\)$0 endsnippet snippet xx "foo" iA aha endsnippet snippet ** "foo" iA aha endsnippet ``` And these be .vimrc ``` let...

My custom, complicated snippet involving `post_jump` python action fails on particular cases in LaTeX. LaTeX uses double backticks to represent double quotes, *e.g.* `a ``word'' in quotes`. But the doubled...

**Expected behavior:** Misspelled words should be highlighted in snippet file comments. **Actual behavior:** They aren't. **Steps to reproduce** Write a comment in a snippet definition file, with some misspelled words....

difficulty: hopefully easy
good first issue
feature request
triaged

**Expected behavior:** I have this php code: ```php $myClass = $this->get('my.class'); ``` I would like to add phpdoc using ultisnips so that it looks like: ```php /** @var MyClass $myClass...

**Expected behavior:** In visual mode, when I press ` As mentioned above, since I have a lot of settings in my vimrc, I don't know how to create a minimal...

Hi! I have some issue with autocomplite when I use Ultisnips with YouCompleteMe (YCM). I have an simple snippet: ```ultisnips snippet nacr "new acronym" bA \newacronym{$1}{$2}{$3}$0 endsnippet ``` But when...

**Expected behavior:** Open a text file in Vim and entering insert mode allows me to type in characters normally. **Actual behavior:** Since installing UltiSnips, every keystroke entered in insert mode...

I have this (minimal) text.snippet file: ``` priority 1000 global !p def create_matrix(snip): rows = snip.buffer[snip.line].split('*')[0] cols = snip.buffer[snip.line].split('*')[1] int_val = lambda string: int(''.join(s for s in string if s.isdigit()))...

I came across Issue #222, but I'm surprised that no-one else seems to have yet raised this usecase: I would like to define some boilerplate for test files in a...