aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-03-22 05:17:45 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2021-03-22 05:17:45 +0300
commit1e39924e41629c0fb5b63a9a36938ee6b7cc73b3 (patch)
tree103d328b3ccc8b47407beb91c0ebace32bace9cb /README.md
parentff66c26ad4cf74524daa7696a1ec2bcd0bde7d9b (diff)
v0.0.3v0.0.3
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6c1785e..079c1db 100644
--- a/README.md
+++ b/README.md
@@ -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