Merge pull request #132 from apupier/ReaAddBlogpostForTooling

Re-add blogpost about Language Support Tooling 0.0.20
diff --git a/content/blog/LanguageSupportTooling-0.0.20/CamelCatalogVersionPreference.gif b/content/blog/LanguageSupportTooling-0.0.20/CamelCatalogVersionPreference.gif
new file mode 100644
index 0000000..daaa01c
--- /dev/null
+++ b/content/blog/LanguageSupportTooling-0.0.20/CamelCatalogVersionPreference.gif
Binary files differ
diff --git a/content/blog/LanguageSupportTooling-0.0.20/completionProperties.gif b/content/blog/LanguageSupportTooling-0.0.20/completionProperties.gif
new file mode 100644
index 0000000..caed84c
--- /dev/null
+++ b/content/blog/LanguageSupportTooling-0.0.20/completionProperties.gif
Binary files differ
diff --git a/content/blog/LanguageSupportTooling-0.0.20/diagnosticRangeImproved.png b/content/blog/LanguageSupportTooling-0.0.20/diagnosticRangeImproved.png
new file mode 100644
index 0000000..af07aaa
--- /dev/null
+++ b/content/blog/LanguageSupportTooling-0.0.20/diagnosticRangeImproved.png
Binary files differ
diff --git a/content/blog/LanguageSupportTooling-0.0.20/filteredListOfQuickfix.gif b/content/blog/LanguageSupportTooling-0.0.20/filteredListOfQuickfix.gif
new file mode 100644
index 0000000..e129fb7
--- /dev/null
+++ b/content/blog/LanguageSupportTooling-0.0.20/filteredListOfQuickfix.gif
Binary files differ
diff --git a/content/blog/LanguageSupportTooling-0.0.20/index.md b/content/blog/LanguageSupportTooling-0.0.20/index.md
new file mode 100644
index 0000000..a333a8a
--- /dev/null
+++ b/content/blog/LanguageSupportTooling-0.0.20/index.md
@@ -0,0 +1,48 @@
+---
+title: "Language Support for Apache Camel - VS Code extension 0.0.20"
+date: 2019-12-16
+author: Aurélien Pupier
+categories: ["Tooling"]
+preview: Language Support for Apache Camel - VS Code extension 0.0.20
+---
+
+During the past months, several noticeable new features have been added to improve the developer experience of application based on Apache Camel. These updates are available in the [0.0.20 release of Visual Studio (VS) Code extension](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-apache-camel).
+
+Before going into the list of updates in detail, I want to note that I mentioned in the title the VS Code Extension release because VS Code extension is covering the broader set of new features. Don't worry if you are using another IDE, though, most features are also available in all other IDEs that support the Camel Language Server (Eclipse Desktop, Eclipse Che, and more).
+
+### Camel 3 inside
+
+Camel 3 was [released](https://camel.apache.org/blog/release-3-0-0.html) a few weeks ago, and the Camel Language Server is already relying on it internally. What does that mean for the end user? It means that the default catalog is now using Camel 3.
+
+If you are still based on Camel 2.x, no problem; check out the following awesome feature.
+
+### Camel catalog version options
+
+A parameter is now available to choose the Camel catalog version that you want. This can be specified in *File -> Preferences -> Settings -> Apache Camel Tooling -> Camel catalog version*.
+
+![Camel Catalog Version preference](./CamelCatalogVersionPreference.gif)
+
+### Diagnostics with quick fixes and more precise range
+
+Diagnostics are really useful to pinpoint issues in our code. In previous versions, the diagnostic range error was provided on the full Camel URI. Now, for invalid component parameter keys and invalid component parameter enum values, the range is more precise and is pointing to the exact incriminated key or value.
+
+![Diagnostic range improved](./diagnosticRangeImproved.png)
+
+For unknown component parameter keys, there is also a quick fix provided if a component parameter key relatively similar exists. It is very useful in case of small typos.
+
+![Filtered List of quickfix](./filteredListOfQuickfix.gif)
+
+### Additional Camel components
+
+If you are using Camel components that are not part of Camel core catalog, it is now possible to provide the Camel component definition to have it fully supported by the tooling. The Camel component definition is defined as JSON. The JSON file can be found in the jar of the Camel component. The preference can be specified through *File -> Preferences -> Settings -> Apache Camel Tooling -> Extra-components -> Edit in settings.json*. Demo video [here](https://www.youtube.com/watch?v=U015RzlgFNM)
+
+
+### Properties file support
+
+Camel allows you to configure general component properties using a Properties file (see [here](https://github.com/apache/camel/blob/cfc9abf5f464057fa343a1a70a25a72c33c408bd/examples/camel-example-main/src/main/resources/application.properties#L42) for an example). Completion is available for component ids and component property keys.
+
+![Completion in Properties files](./completionProperties.gif)
+
+### What's next?
+
+This is very opened for the future. There will surely be improvements directed to Apache Camel K support. You can provide feedback on the [Camel Tooling GitHub repository](https://github.com/camel-tooling), it will help drive the future roadmap.
\ No newline at end of file