hsnips icon indicating copy to clipboard operation
hsnips copied to clipboard

HyperSnips: a powerful snippet engine for VS Code, inspired by vim's UltiSnips

Results 67 hsnips issues
Sort by recently updated
recently updated
newest added

I request to add support for TextMate-like variables, e.g.: ```js TM_SELECTED_TEXT // The currently selected text or the empty string TM_CURRENT_LINE // The contents of the current line BLOCK_COMMENT_START //...

Can't say definitively because the log says a bunch of stuff that is too hard to trace. However, when I installed this extension, saving json files would hang and a...

I am having an issue with a simple snippet function. I have the following snippet (the actual snippet is a bit longer, this is to produce a simple test example)...

Hello, I was wondering whether it would be possible to include external files in .hsnips file, so that we avoid copy-pasting when multiple filetypes share the same snippets. UltiSnips does...

I don't know how to use the "VISUAL".How does it work?And I also find that when you use the ''VISUAL''snippets, the running status of HyperSnips for Math is `Cannot read...

Hello, I've got a problem that behaves kind of like [https://github.com/draivin/hsnips/issues/38](#38), but I don't know how to fix it. I have this two snippets ``` snippet lim "auto limit" w...

Consider the following snippets: ```lua snippet `abc` "i" iA $1 111 ``rv=`${t[0]?snip.tabstop(2,"okay"):""}` `` 222 endsnippet ``` If I write something in `$1` tabstop, it is expected to insert a tabstop...

This works fine: ```lua snippet box "Box" A ``rv = '┌' + '─'.repeat(t[0].length + 2) + '┐'`` │ $1 │ ``rv = '└' + '─'.repeat(t[0].length + 2) + '┘'`` endsnippet...

If you write a snippet like ``` snippet `(\\?)(B[A-Z])` "test" A \``rv=m[2]`` endsnippet ``` And in a $ ... $ pair, put your cursor **_close to the second $_**, and...

I want to know whether there is a way to use a case-insensitive regex in the TRIGGER part of the snippet. I know there is way to achieve this in...