coc-snippets icon indicating copy to clipboard operation
coc-snippets copied to clipboard

Snippets solution for coc.nvim

Results 19 coc-snippets issues
Sort by recently updated
recently updated
newest added

Bumps [debug](https://github.com/debug-js/debug) from 4.1.1 to 4.3.4. Release notes Sourced from debug's releases. 4.3.4 What's Changed Add section about configuring JS console to show debug messages by @​gitname in debug-js/debug#866 Replace...

dependencies

_I'm not sure if this is a bug,_ but whenever I perform a visual select and then expand a snippet, I get my visual select right where I want it...

Can't reproduce

I have the following two snippets for LaTeX: ```snippet snippet equ "Equation" bA \begin{equation} ${1:${VISUAL}} \end{equation} $0 endsnippet context "math()" snippet // "Fraction" iA \\frac{$1}{$2}$0 endsnippet ``` A long time...

bug

sometimes i write codeblock in markdown, i need to add some other languages snippets temporarily. it is an enhancement. thanks!

won't fix

https://github.com/andymass/vim-matchup is a popular vim plugin. However, the cursor doesn't behave as expected after expanding some snippets. ### MWE ```vim call plug#begin() Plug 'neoclide/coc.nvim', {'branch': 'master', 'do': 'yarn install --frozen-lockfile'}...

Platform information: - OS: Ubuntu 20.04 - Vim: Neovim 0.8.2 Relevant plugins used: - coc.nvim - coc-snippets - UltiSnips I'm trying to use string interpolation for dynamic snippet content, as...

question

I eould like an option to disable this plugin while I write inside comments. I have hoza/vim-snippets as the snippet provider for coc-snippets. My coc-config is the next: ``` {...

Hello, i have noticed that if we have a language server (like jtls), which also provide snippet support, and i think we can not manually disable it, those will shadow/override...

For example: ``` SnakeCase: ${1:SomeVariable} camel_case: ${1/^(.[a-z]*)([A-Z][a-z]*)$/\l$1(?2:-\l$2)/g} ``` Will give: ``` SnakeCase: SomeVariable camel_case: some-$2 ``` The `$2` is not replaced by `variable`.