diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-22 05:17:45 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-22 05:17:45 +0300 |
commit | 1e39924e41629c0fb5b63a9a36938ee6b7cc73b3 (patch) | |
tree | 103d328b3ccc8b47407beb91c0ebace32bace9cb /README.md | |
parent | ff66c26ad4cf74524daa7696a1ec2bcd0bde7d9b (diff) |
v0.0.3v0.0.3
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,17 +1,23 @@ -# Golang snippets +# Golang Tools [![Version](https://vsmarketplacebadge.apphb.com/version/neonxp.gotools.svg)](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools) [![Installs](https://vsmarketplacebadge.apphb.com/installs/neonxp.gotools.svg)](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools) [Install extension](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools) -Extensions with frequently used snippets for productive go development. +Extensions with frequently used snippets and code actions for productive go development. Extension in active development! Your contribution is always welcome :) +# Snippets + | Prefix| Description | Example | | :---- |:-----------:| -------:| | `pkg` | Package header line | `package test` | | `construct` | Constructor for structure type | see in action | | `var` | Variable with type and value | `var test string = "hello"` | | `stack` | Stack from array of types | see in action | + +# Code actions + +* Add error checking - adds stub error checking to current line |