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:** I have the following vimrc: ``` if empty(glob('~/.vim/autoload/plug.vim')) silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall --sync | source $MYVIMRC endif call plug#begin('~/.vim/plugged') Plug 'SirVer/ultisnips'...

Given snippet: ``` snippet mm "Inline Math" wA \\( $1 \\) $0 endsnippet ``` which inserts inline math mode in LaTeX: `\( | \)` where cursor position is `|` and...

**Expected behavior:** let g:UltiSnipsExpandTrigger = "< cr >" when snip list appear, no snip is been selected. **Actual behavior:** let g:UltiSnipsExpandTrigger = "< cr >" when snip list appear, the...

The syntax of UltiSnips's snippet is as below: snippet trigger_word [ "description" [ options ] ] The upper method can convert all characters in the string into upper case: "string".upper()...

Hello, Is there a way to detect incompatible snippet triggers? Say: ``` snippet st "superscript" iA endsnippet ``` vs ``` snippet bst "binary spanning tree data" iA endsnippet ``` vs...

**Expected behavior:** Change filetype detection into whole word match, the default wildcard way doesn't support overwriting in language like `foo` and `foobar`. For example, I have extended a `systemverilog.snippets` from...

**Expected behavior:** A lot of people are using latest stable tags, this includes distros that package vim plugins. This means the great work here is not rolled out to a...

This is not an issue report, I wanted to ask about the functionality of the `snip.unshift()` method and it's uses, maybe with an example snippet, because I can't seem to...

I use `UltiSnips` in conjunction with `mucomplete` and `VimTeX` for autocompletion in `.tex` files. What I would like to have is automatically triggering of completion suggestions based on context of...

neovim has been displaying text while writting for a couple of days, after upgrading it to the latest version and trying multiple versions I tried to profile neovim to see...