Skip to content

Releases: KingOfTac/fast-snippets

v1.6.2

30 Dec 22:50
4cebeee
Compare
Choose a tag to compare

What's Changed

  • Fixed wrong syntax for event bindings

v1.6.1

21 Nov 17:33
ec47d55
Compare
Choose a tag to compare

What's Changed

  • Fixed wrong syntax for when & repeat directives

v1.6.0

15 Nov 22:53
2c083a2
Compare
Choose a tag to compare

What's Changed

  • Reworked how the extension manages the existing document imports and how new imports get inserted.
    • Overall should be more reliable and less prone to failure

v1.5.0

09 Nov 21:27
b5bd772
Compare
Choose a tag to compare

What's Changed

  • Completely re-did the snippets.
  • Snippets can now automatically import symbols they contain that come from external packages.
    • Import behavior can be controlled by the fastSnippets.generateImportsFromSymbols setting.
    • Because vscode does not actually support this behavior for snippets, all of the included
      snippets had to be moved from their .code-snippets file and into a CompletionItemProvider.
      A side effect of this is the auto import behavior only works for the snippets included in this
      extension.
    • If vscode#111007 gets implemented, then this might work with user and global snippet files.